Every HTML webpage should contain a page title element that describes the content or purpose of the page.
It should be as descriptive and meaningful as possible.
The <title>
tag is used to add a title to the web page. It is included in the <head>
section of the document.
<!DOCTYPE html>
<html>
<head>
<title>WebmasterMaze Tutorials</title>
</head>
<body>
</body>
</html>
Page title is also displayed in the browser's title bar. Full title is displayed as a tool-tip when you hover over the tab, as shown in the image below.
It is also displayed in search engine results as title of the webpage, as shown below.
The page title should accurately describe the content and significance of the page as it plays a crucial role in search engine optimization (SEO). It is used by search engines to determine the ranking of pages in search results.
Please check below options for the links to our previous or next tutorial.