Tag Description
<hr /> The <hr /> tag defines a horizontal line

Example 1 for <hr />:

HTML Code:
<p>This is some text.</p>
<hr />
<p>This is some more text.</p>
Display:

This is some text.


This is some more text.

Example 2 for <hr />:

HTML Code:
<div>This is some text.
<hr />
This is some more text.</div>
Display:
This is some text.
This is some more text.

Example 3 for <hr class="afsc-hr" />:

HTML Code:
<p>This is some text.</p>
<hr class="afsc-hr" />
<p>This is some more text.</p>
afsc-hr Display:

This is some text.


This is some more text.

Example 4 for <hr class="afsc-hr" />:

HTML Code:
<div>This is some text.
<hr class="afsc-hr" />
This is some more text.
</div>
afsc-hr Display:
This is some text.
This is some more text.