HTML Dog
Skip to navigation

HTML Tag: title

The title of a page. You must have a single textual title element to produce a valid document and it must be placed within the head element.

Optional Attributes

Global attributes

Example


<!DOCTYPE html>
<html lang="en">
    <head>
        <title>The Tale of the Entitled Title</title>
    </head>
    <body>
        <!-- blah blah -->
    </body>
</html>