The cover of The Complete Idiot's Guide to Create a Web Page The Complete Idiot's HTML Tag Reference

| Index | Previous Tag: <THEAD> | Next Tag: <TR> |


<TITLE>

Specifies the title of the page.

Support:

HTML StandardInternet ExplorerNetscape Navigator
2.0 and later 1.0 and later 1.0 and later
Notes:
  • This tag requires the </TITLE> end tag.
  • The browser displays the title in the window's title bar.
Attributes:
ID = "Text"
An alphanumeric string that uniquely identifies the tag.

Support:

HTML StandardInternet ExplorerNetscape Navigator
Not supported 4.0 and later Not supported

Notes:

  • Although you can use letters and numbers for the ID, the first character must be a letter.

LANG = "Text"
The language used by the tag's attribute values and text content.

Support:

HTML StandardInternet ExplorerNetscape Navigator
4.0 and later 4.0 and later Not supported

Example:
<HTML>
<HEAD>
<TITLE>My Home Sweet Home Page</TITLE>
</HEAD>

| Index | Previous Tag: <THEAD> | Next Tag: <TR> |