HTML Page Title
- The <title> tag is required in HTML documents.
- A <title>...</title> tags defines the title for the page.
- It is the most important for all the documents must specified.
- The title must be text-only, and it is shown in the browser's title bar or in the page tab.
- The contents of a page title is very important for search engine optimization (SEO).
Example:
<!DOCTYPE
html>
<html>
<head>
<title>HTML</title>
</head>
<body>
<h1>Title
Tag</h1>
<p>HTML
Documents using title tags</p>
</body>
</html>
Output:
More topic in HTML