Horizontal Rules
The horizontal rule is used to separate content. It's a very simple basic tag which has a few choice attributes you can use to customize it. Let's take a look:
<hr size="4" width="50%" color="blue" align="center">The basic tag is a paltry <hr>, which stands for horizontal rule. The above example includes the attributes for size, width, color and align. Each of those fur attributes has different options.
- size - can be an integer (whole number) from 1 to 6.
- width - can be a number of pixels (px) or a pecentage of page width.
- color - can be a hex code or a color name.
- align - can be left, right or center.



