<HR>
The <HR> Tag a Horizontal Rule used as a separator. The
optional commands include WIDTH and SIZE in pixels or percent, and NOSHADE.
Some Web Developers (including me) like to use images, called by
<IMG>, instead of the
<HR> Tag for design reasons.
The default <HR> WIDTH is 100% and SIZE is 2 pixels.
Other optional commands include:
ALIGN - Left, Center, or Right.
COLOR - Color name, or #RRGGBB Hex. (Internet Explorer only)
<hr>
<hr width="300" size="3">
<hr width="50%" size="4" align="right">
<hr width="50%" noshade>
<hr width="75%" size="4" noshade>
<hr width="5" height="5" size="5">
<hr width="50%" size="10">
<hr width="80%" color="purple">
<hr width="300" color="#ffff00">
|