HTM15


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

    Horizontal Ruled Lines are used to separate different areas of a web page. This horizontal ruled line it has the following attribute NOSHADE - to turn the line�s shading off. Indicates if the default shading in the horizontal rule is to be removed. WIDTH = n (for fixed pixel width) or WIDTH = n% for a certain percentage of the screen wide. Indicates the width of the horizontal rule in pixels or percent of the width displayed by the Web browser.


..Back to the top..



OUTPUT:


HTM15. Horizontal Rules

Body goes here


Headings are kewl!





You may also use several attributes within one tag�


..Back to the top..



SOURCE CODE:



<HTML>
<HEAD>
<TITLE>HTM15. Horizontal Rules
</HEAD>
<BODY>
<H1>Body goes here</H1><HR>
<H3>Headings are kewl!</H3>
<HR WIDTH = 50>
<HR WIDTH = 50%>
<HR SIZE = 7>
<HR NOSHADE>
You may also use several attributes within one tag�
<HR WIDTH = 50% SIZE = 10 NOSHADE>
</BODY>
</HTML>


..Back to the top..