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




HTML - hr Tag


Have you ever seen a straight horizontal line in webpages separating two paragraphs. I bet you have seen.


And using the hr tag a straight horizontal line can be drawn in a webpage.


How to draw a straight horizontal line in HTML using hr tag?


Example :



<html>	
	<body>
		<p>
			First line.
		</p>	
		<hr>
		<p>
			Second line.
		</p>		
	</body>
</html>


Output :




So, if you look at the above output, a horizontal line is inserted in the webpage.


The horizontal line is inserted because of the hr tag we have placed in our code.


<hr>

What is the full form of hr tag?


HR tag stands for Horizontal Rule.