The Web Design Group

HEAD - Document Head

Syntax <HEAD>...</HEAD>
Attribute Specifications
Contents Exactly one TITLE element, optional BASE and ISINDEX elements, and zero or more SCRIPT, STYLE, META, LINK, or OBJECT elements
Contained in HTML

The HEAD element contains header information about the document, such as its title, keywords, description, and style sheet. HEAD is required in all documents, but its start and end tags are always optional. The HEAD element is followed by the BODY in HTML 4.0 Strict and Transitional documents; in HTML 4.0 Frameset documents, the HEAD is followed by a FRAMESET element.

Content in the HEAD is generally not rendered, with the exception of the required TITLE element. If the </HEAD> end tag is omitted, the first BODY or FRAMESET element infers the end of the HEAD.

The optional PROFILE attribute of HEAD gives the location of a metadata profile. A profile defines properties that may be used by META and LINK elements within the HEAD. There is no prescribed format for profiles.

Work is currently underway on improving the use of metadata on the Web. See the W3C's Metadata and Resource Description area for the latest information.

More Information