The TITLE Tag


The title of the page must be placed within the head section. The beginning of the title is marked by the <TITLE> tag, and the end with the </TITLE> tag. Most browsers display the title on the top portion of the frame of the page. Some browsers give the user the option to hide the display of the title. Many browsers also display the title of the document in the document title field, and use the title as the bookmark listing.

Titles should be short, but descriptive, and limited to one line, so they can fit within the frame of the page. You should avoid accentuation within the title because it is the window manager, and not the browser, that interprets the title. Some window managers do not support accents.


<HTML>
<HEAD>
<TITLE>My Home Page</TITLE>
</HEAD>

<!-- Written by me -->
<!-- Created:  yesterday -->
<!-- Last modified:  today -->

<BODY>

This is where the text goes. 

</BODY>
</HTML>

I understand the TITLE tag. Is there more?


[INDEX] [PREVIOUS] [NEXT PAGE] [CHAPTER 1]

Valid HTML 3.2!