Version | //IETF//DTD HTML 2.0 Strict//EN
|
---|
Element | TITLE |
---|
Purpose | title of document |
---|
Description | This element encloses the title of a document. Since the TITLE element occurs inside the document's HEAD element, it is not considered to be part of the displayed content of the document itself. Typically, a browser will display the title of a document on its titlebar.
You can have exactly one TITLE in the document. The contents of the TITLE can be any amount of text.
For example:
<HEAD>
<TITLE>
Hello World Demonstration Document
</TITLE>
</HEAD>
|
---|
Start tag | Required <TITLE>
|
---|
Attributes | Name | Type | Default | Comment |
---|
SDAFORM | CDATA | #FIXED "Ti" | one to one mapping; in support of transformation to the International Committee for Accessible Document Design DTD for usable access to structured information by print-impaired individuals
|
|
---|
Content | ( #PCDATA )* -( META | LINK )
|
---|
End tag | Required </TITLE>
|
---|
Referenced in | HEAD
|
---|