Structure OF HTML Documents

 Structure OF HTML Documents

  • Every HTML documents starts with <html> tag and end with </html> tag.
  • The content that we prepared within the <html></html> tags is divided into two section
  • 1) Head section
  • 2) Body section

Structure


<html>
        <head>
                                <!...............Head section..................>
        </head>

        <body>
                                 <!............Body section...................>                   
        </body>
</html>



Post a Comment

0 Comments