Whenever a webpage loads, you can see a text displayed in the web browser's title bar.
It is the title of the HTML document.
<html> <head> <title>HTML Tutorial</title> </head> <body> <p>This is the first paragraph</p> </body> </html>
So, in the above example we have defined the title as 'HTML Tutorial' inside the <title> tag.
<title>HTML Tutorial</title>
Just remember that the <title> tag lies inside the '<head>' tag.
<head> <title>HTML Tutorial</title> </head>