HTML Tutorials
Build Your First Web Site
Step Five
Body Tag
Type body tag.
Everything between body tags will appear on your browser.
Now write one paragraph of text. Something like "Hello World, this is my first web site".
and close p body tag.
Step Six
View Your First Web Site
Now close html tag.
Save your document and if everything is OK you should see finished web site on your browser.
If you don't want typing all this tags below copy this tags, paste on any text editor and save as index.html
Open document and you will see this in your browser.
<html>
<head>
<title>
HTML TUTORIALS My first web site
</title>
</head>
<body>
<p>Hello World, this is my first web site.</p> </body>
</html>
<head>
<title>
HTML TUTORIALS My first web site
</title>
</head>
<body>
<p>Hello World, this is my first web site.</p> </body>
</html>


