<html>
<title>CodeAve.com(The Horizontal Rule)</title>
<body bgcolor="#FFFFFF">
The horizontal rule (default view)
<hr>
<p>
The horizontal rule (width set to 50%)
<hr width="50%">
<p>
The horizontal rule (width set to 50 pixels)
<hr width="50">
<p>
The horizontal rule (color set to red)
<hr color="#FF0000">
<p>
The horizontal rule (width set to 5 and color set
to red)
<hr color="#FF0000"
size="5">
<p>
The horizontal rule (aligned to the left)
<hr width="50%"
align="left">
<p>
The horizontal rule (aligned to the left)
<hr width="50%"
align="center">
<p>
The horizontal rule (aligned to the left)
<hr width="50%"
align="right">
</body>
</html>
|