Title

Category:HTML Tags

Title

This tag is used to define the tile of the web page. The title of the page is shown in the browser's title bar, in bookmarks, and in the search result.

Examples

Title

Using <title> to define a title for an HTML document.

<head>
  <title>HTML Elements Reference</title>
</head>

Syntax

<title></title>

Tips

  • The title of your web page does not show up inside your web page. The title is displayed in the browser's title bar or search engine results pages. Note: The title of your web page won't be viewable while you are editing it on Code.org. To see the title, click the Share button, then copy and open the link.
  • The tile must be text-only.
  • The title tag <title> is different than the heading <h1> tag.

Additional Information

For more information, see http://www.w3schools.com/tags/tag_title.asp

Found a bug in the documentation? Let us know at documentation@code.org