HTML - <title> Tag



The HTML title tag is used to represent the webpage title that can be visible on the browser title bar, and we can also observe it on the search engine result page.

The <title> tag is defined inside of the <head> tag, and it should be text-only. It is visible in the browser’s title bar or in the page’s bar.

If we define the title of an HTML document, then it helps to relate the document, like the name of the organization or the name of the page.

Syntax

Following is the syntax of <title> tag −

<title> The title of the page will come here... </title>

Example

In the following example, we are creating a simple HTML document that contains a title of the page.

<!DOCTYPE html>
<html>
<head>
   <title>this_is_title</title>
</head>
<body></body>
</html>

When we run the above code, it will generate an output consisting of the title of the page on the webpage.

Example

In the following example, we are using the <title> tag inside of the <head> tag to provide the title of the page, as follows:

<!DOCTYPE html>
<html>
<head>
   <title>Web_title</title>
</head>
<body>
   <h2>title tag</h2>
   <p> title tag always comes inside of the head tag. </p>
</body>
</html>

On running the above code, the output window will pop up displaying the title of the page in the browser title bar.

html_tags_reference.htm
Advertisements