From http://www.w3schools.com (Copyright Refsnes Data)

HTML <title> tag


Example

A simple HTML document, with the minimum of required tags:

<html>
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document......
</body>

</html>

Try it yourself!


Definition and Usage

The <title> tag defines the title of the document.

The title element is required in all HTML/XHTML documents.

The title element:


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The <title> tag is supported in all major browsers.


Differences Between HTML and XHTML

NONE


From http://www.w3schools.com (Copyright Refsnes Data)