
Educators: Earn a free Gold upgrade by joining the PBwiki Back To School Challenge.
The Head element contains general information, also called meta-information, about a document. Meta means "information about".
Attribute definitions
profile = uri CT
This attribute specifies the location of one or more meta data profiles, separated by white space. For future extensions, user agents should consider the value to be a list even though this specification only considers the first URI to be significant. Profiles are discussed below in the section on meta data.
Attributes defined elsewhere
Optional Attributes
Standard Attributes
The HEAD element contains information about the current document, such as its title, keywords that may be useful to search engines, and other data that is not considered document content. User agents do not generally render elements that appear in the HEAD as content. They may, however, make information in the HEAD available to users through other mechanisms.
Examples
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
The <head> tag is also important when using internal CSS
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
#nav { list-style-type:none;}
body { background-color:red; }
</style>
</head>
Page Information
|
Wiki Information |
Recent PBwiki Blog Posts |