You are here : htmlHTML 5title

<title> - HTML 5

The <title> tag is required in all HTML documents and it defines the title of the document.

The <title> element:

  • defines a title in the browser toolbar
  • provides a title for the page when it is added to favorites
  • displays a title for the page in search-engine results


Syntax

    <html>
	<head>	<title>HTML Reference</title>	</head>	<body>	The content of the document......	</body>	</html>


Example

    <html>
	<head>	<title>HTML Reference</title>	</head>	<body>	The content of the document......	</body>	</html>


Output / Return Value


Limitations


Alternatives / See Also


Reference