<title>


<title> tag will be used to set the title of the page, It will be appear in top of the browser.

Syntax:

<title>HTML Tutorial - Title Tag Example</title>

Example:

<html> <head> <title>HTML Tutorial - Title Tag Example</title> </head> <body> Check the title of the page.... </body> </html>

Output:

Check the title of the page....