Line Dividers
A horizontal rule is a divider used to separate content. You can place a rule in your HTML by using the <hr>
tag.
Usage
Simply place the <hr>
tag in between the areas of content you'd like to separate with the rule. Below is an example of two paragraphs separated by a rule.
<hr>
<p>This content is below the rule.</p>
This content is above the rule.
This content is below the rule.