Structure of an HTML document
- HTML documents have two sections, the header and the body.
- The body is the larger section than the header section of the document.
- The header section of an HTML document contains the document's title
- The body section contains everything else.
- Example of HTML document Structure.
<html> <head> <title>Title goes here</title> </head> <body> Body goes here </body> </html>