title

I. Description

The title element sets the title for the html document. Most web browsers will use the title of an html document as the label for that tab or window.

So if the title of an html document is 'Beef Stew Recipe' then when a user views that html document/webpage in their web browser the tab label will be 'Beef Stew Recipe'.

II. Examples

<!DOCTYPE html>
<html>
    <head>
        <title>Example HTML Document</title>
    </head>
    <body>
        <h1>Title Example</h1>
        <p>The title for this webpage is 'Example HTML Document'.</p>
    </body>
</html>