ToC ~ Up ~ Prev ~ Next ~ Index Introduction to HTML
Last Update: 31 January 2000

3. HEAD

The HEAD contains general information, or meta-information, about the document. It is the first thing in any document, lying above the BODY and just after the <HTML> tag starting the document.

The contents of the HEAD are not displayed as part of the document text: the displayed material is found within the BODY. Consequently, only certain mark-up elements can be placed within the HEAD. These are:

3.0.2 Example of a HEAD

<HTML>
  <HEAD>
    <TITLE> Goofy Stuff from Blobby Page </TITLE>
    <BASE HREF="http://www.somewhere.org/stuff/blob.html">
    <LINK HREF="http://www.somewhere.org/stuff/index.html" REL="index">
  </HEAD>
  <BODY>
    ..... text of the document
  </BODY>
</HTML>

ToC ~ Up ~ Prev ~ Next ~ Index Introduction to HTML
© 1994-1998 by Ian Graham
Last Update: 31 January 2000