The Basic Tags
To begin a html document, you must start with:
<html>
and end in:
</html>
this closes the information up.
Now you have <html> </html>.
in between these, you need <head> and </head> to begin
and close the head section of the document.
After this you have the body section which is also in between the <html> and </html>
tags but after the <head> and </head> tags.
For the body section you need <body> and </body>.
Still confused? let me explain!
basically the main thing for a html document is:
<html><head>your html code for the head section</head><body>the
code for the body section </body></html>