HTML Hr

HTML <hr> tag is used to specify a paragraph-level thematic break in HTML document. It draw a horizontal line between them. It is also called a Horizontal Rule in HTML.

See this example:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of HTML hr tag</title>
</head>
<body>
    <p>This is a paragraph</p><hr>
    <p>This is a another paragraph</p>
 </body>
</html>