HTM14


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     Horizontal Ruled Lines are used to separate different areas of a web page. The tag for a horizontal ruled line is <HR> and it has the following attributes: ALIGN � indicates the horizontal alignment of the horizontal rule. COLOR � indicates the color of the horizontal rule. SIZE = indicates the size of the horizontal rule in pixels.


..Back to the top..



OUTPUT:

HTM14










..Back to the top..



SOURCE CODE:



<HTML>
<HEAD>
<TITLE>HTM14</TITLE>
</HEAD>
<BODY>
<BR><BR><BR>
<HR COLOR=red WIDTH=300 ALIGN=left>
<HR COLOR=blue WIDTH=400 ALIGN=left>
<HR COLOR=green WIDTH=500 ALIGN=left>
<HR NOSHADE SIZE=12>
<HR COLOR=green WIDTH=500 ALIGN=right>
<HR COLOR=blue WIDTH=400 ALIGN=right>
<HR COLOR=red WIDTH=300 ALIGN=right>
</BODY>
</HTML>


..Back to the top..