Programming Code Center(PCC)
[HTML]

(PCC)::[how-to-use-hr-tag-in-html-to-make-horizontal-line]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<head>
<title>Horizontal Line Example</title>
</head>
<body>
<p>This is paragraph one and should be on top</p>
<hr />
<p>This is paragraph two and should be at bottom</p>
</body>
</html>

Output :

Horizontal Line Example

This is paragraph one and should be on top


This is paragraph two and should be at bottom