HTM28


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     The three types of lists, (unordered, ordered, and definition) may be nested together.
When we nest lists, we make one of more item of a list an entire new list. There is no limit on the levels of nesting.


..Back to the top..



OUTPUT:


HTM28. A Web page with nested lists

COLORS



..Back to the top..



SOURCE CODE:



<HTML>
<HEAD><TITLE>HTM28. A Web page with nested lists</TITLE></HEAD>
<BODY>
<H2><B><CENTER><FONT COLOR = �blue�>COLORS</FONT></CENTER></B></H2>
<UL>
<LI>PRIMARY
<UL>
<LI>RED
<LI>BLUE
<LI>YELLOW
</UL>
<LI>SECONDARY
<UL>
<LI>ORANGE
<LI>VIOLET
<LI>GREEN
</UL>
<LI>TERTIARY
<UL>
<LI>RED ORANGE
<LI>RED VIOLET
<LI>BLUE GREEN
<LI>BLUE VIOLET
<LI>YELLOW ORANGE
<LI>YELLOW GREEN
</UL>
</UL>
</BODY>
</HTML>


..Back to the top..