The title of a document is specified by the
<TITLE> element, which
should be placed in the document HEAD.
The Title is not part of the document text and cannot contain hypertext links or special markup commands -- it must be simple text.
Often the title is used to label the window displaying the text, or is used to label a place in a browser's history or bookmark list. It therefore should be short -- less than 64 characters is strongly recommended. Any document you construct now should look like:
<HTML>
<HEAD>
<TITLE>HTML pages so far.</TITLE>
</HEAD>
</HTML>