HTM19


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     Unordered lists itemize information whose order is not important. Browsers use one of three symbols to display list items: disk (filled circle), square, or circle. The <UL> tag creates unordered lists. The tag must close to define the end of the list.


..Back to the top..



OUTPUT:


HTM19. A Web page with unordered lists

Web page with two unordered lists

Here is my second unordered list
footer goes here


..Back to the top..



SOURCE CODE:



<HTML>
<HEAD><TITLE>HTM19. A Web page with unordered lists</TITLE></HEAD>
<BODY>
<!-- List uses default list symbols-->
<H1>Web page with two unordered lists</H1>
<UL>
<LI>First list item
<LI>Second list item
<LI>Third list item
<LI>Fourth list item
</UL>
<!-- List controls list symbols-->
Here is my second unordered list
<UL>
<LI TYPE = �disc�>List item using the disc symbol
<LI TYPE = �circle�>List item using the circle symbol
<LI TYPE = �square�>List item using the square symbol
<LI>List item using no TYPE attribute
</UL>
<ADDRESS>footer goes here</ADDRESS>
</BODY>
</HTML>


..Back to the top..