<HEAD>
The HEAD element is one of the two major sections which make up an
HTML document. The other element is the BODY. This element contains
all of the meta-information for the page including the title, description
and keywords for search engines.
It also may contain references to Cascading Style Sheets (CSS) and client-side
scripting such as Javascript. Another special tag, META REFRESH, will
redirect the user to another page on the site.
Attributes
Attribute |
Description |
ID |
Identifies this tag to reference in script (program code) |
CLASS |
Define the class used to render this element (defined by a style sheet) |
PROFILE |
Indicates an external resource (URI) where meta data for the page may be found |
|
Example
<HTML>
<HEAD>
<TITLE>Sports Wrap - Hockey</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
Compatibility
HTML 4.01
|