<hr/> tag using for create Horizontal lines in HTML. Horizontal lines are using for break-up the documents.
Ex- <p>Welcome to Coding Request</p> <hr/>
Now we are checking the Horizontal lines in HTML
<html><head>
<title>Coding Request</title>
</head>
<body>
<p>Welcome to Coding Request</p>
<hr/>
<p>Free education for all.</p>
</body>
</html>