HTML <title> Tag
Description
The HTML <title> element defines the document's title that is shown in a browser's title bar or a page's tab. It only contains text; tags within the element are ignored.
CSS Display:
noneSyntax
<title>My Web Page</title>Examples
Title Usage
<head>
<title>Learn Web Development - HTML Save</title>
</head>
The title should accurately describe the contents of the document.
Notes
The <title> element is critical for both SEO and user experience. It determines the clickable headline in search engine results and the title text in the browser tab.
You must place the <title> tag inside the <head> block, and it should ideally be under 60 characters so it fits neatly in search results without being cut off.
Related Tags
Last updated: 8th April 2026