HTM19


DESCRIPTION :

OUTPUT :

SOURCE CODE :





DESCRIPTION :


HTM19 using unordered list in web page.



OUTPUT :

Web page with two unordered lists

Here is my second unordered list
footer goes here



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>

RETURN