The Basics Of HTML (Hyper Text Markup Language)

HTML - hyper text markup language its the basics of a website so you should learn HTML before you start making website . today i am going to teach you the basics of HTML and to make a simple HTML website using notepad .

1 . open notepad

2 . copy and paste this code into your notepad

<html> 

<head> 
<title>this is my first web page</title>
</head> 

<body>

</body> 
</html>




3 . now your document should look like this

 now i will explain the code

<html>

</html>

this is the main thing of a web page without these the website will not work so whenever you start making a website dont forget this and remember HTML is a opening tag and it should be closed .

<head>

</head>

your website needs a head which provides information about your document

<body>

</body>

body is the content of your website

<title>this is my first web page</title>


title is the title of your website

4 . now you just learned the basics of HTML

5 .now in notepad click file and save as and name it "my first web page.html" dont forget about the format of your document ".html" .

6 . now double click the document and your default web browser will open your web page

happy html coding

Post a Comment

Note: Only a member of this blog may post a comment.