



|
Description
shows unordered list and how to break the list tag. Source Code <HEAD><TITLE>HTM19. A Web page with unordered lists</TITLE></HEAD> <BODY> <!-- List uses default list symbols--> <H1>Web page with two unordered lists<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> Output Web page with two unordered lists |
  