HTM20


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     The <LI> tag defines list items of a list. The tag is used inside the <UL> tag, as many times as there are list items. Its most common attribute is TYPE, which specifies the display symbol of list items.


..Back to the top..



OUTPUT:


HTM20. Unordered Lists TV Characters


..Back to the top..



SOURCE CODE:



<HTML>
<HEAD><TITLE>Unordered Lists</TITLE></HEAD>
<BODY>
TV Characters
<UL>
<LI> �I Love Lucy�
<UL>
<LI>Fred
<LI>Ethel
<LI>Ricky
<LI>Lucy
<UL>
<LI>Little Ricky
</UL>
</UL>
<LI>�The Addams Family�
<UL>
<LI>Gomez
<LI>Morticia
<UL>
<LI>Beasley
<LI>Ophelia
</UL>
<LI>Thing
<LI>Lurch
</UL>
</UL>
</BODY>
</HTML>


..Back to the top..