Learnerslesson
   JAVA   
  SPRING  
  SPRINGBOOT  
 HIBERNATE 
  HADOOP  
   HIVE   
   ALGORITHMS   
   PYTHON   
   GO   
   KOTLIN   
   C#   
   RUBY   
   C++   
   HTML   
   CSS   
   JAVA SCRIPT   
   JQUERY   




HTML - Title


Whenever a webpage loads, you can see a text displayed in the web browser's title bar.

HTML Title

It is the title of the HTML document.


Example :



<html>
	<head>
  		<title>HTML Tutorial</title>
	</head>
	<body>
        <p>This is the first paragraph</p>
	</body>
</html>


Output :

HTML Title

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>