<TITLE>...</TITLE>
The <TITLE> tag is used to give the HTML document a name that indicates
what the page describes. It is used by your browser's bookmark program,
and also by other programs that catalog Web pages.
The <TITLE> tag always goes between the <HEAD> and </HEAD> and does not
show up on the actual web document. Care should be given to picking the
title name so that it is both descriptive and as short as possible. Also
make sure that it is relevant to the content of the page.
Usage:
Place the Title f the page between the title tags.
<HTML>
<HEAD>
<TITLE>The Brown Family Pictures</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>