HTML & CSS Wiki
Advertisement




The HTML <title></title> element is an important element. It is used within the <head> element. This tag's only purpose is to indicate the text which will be shown in the tab bar and on the browser's main heading region.

To apply this in an HTML document, use:

<html>
    <head>
        <title>The title</title>
        Head content
    </head>
    <body>
        Body content
    </body>
</html>


External links[]

Advertisement