<hr> tag is use for the place a horizontal line on the page.
By default the width of the line is 100%. But we can set the width of the line by using width attribute of the <hr> tag.
Full Width Line
Width is 50%
By default the alignment of the line is center. But we can set or alter the alignment of the line by using align attribute of the <hr> tag. This attribute only act when the value of width attribute changed.
Center align line
Alignment set to left.
By default the colour of the line is gray. But we can change it by the color attribute.
Alignment set to left.
Full Width Line
<hr>Width is 50% default alignment is center.
<hr width="50%" />
Width is 50%. Set the alignment is left.
<hr align="left" width="50%" />
Red Color Line
<hr width="50%" />