HTML Structure


The basic structure of HTML is


<HTML>

 

   <HEAD>

   ...

   </HEAD>

 

   <BODY>

   ...

   </BODY>

 

</HTML>

 

An HTML document should starts and ends with <html> and </html> tags.

Because these tags tell the browser that the entire document is composed in HTML.

Then inside these two tags, the document is split into two sections:

i) HEAD – It contains information about the document such as title, author of the document etc.

ii) BODY – It contains the content of the document which is displayed in the screen.

 

 

Posted on July 12, 2014 in HTML

Share the Story

Leave a reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Back to Top