up

Document structure

HTML documents have two distinct sections: The header and the body:
  <!DOCTYPE HTML PUBLIC "+//ISBN 82-7640-037::WWW//DTD HTML//EN//2.0" "html.dtd">
  <html>
  <head>
    header information
    <meta .......>
    <title>title of document</title>
  </head>
  <body>
    This is where the document really fits
  </body>
</html>
The first line shown above is not normally included but defines the SGML DTD being used.