HTML 19

Description

shows unordered list and how to break the list tag.

Source Code

html19 <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<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

HTM19. A Web page with unordered lists

Web page with two unordered lists
  • First list item
  • Second list item
  • Third list item
  • Fourth list item
Here is my second unordered list
  • List item using the disc symbol
  • List item using the circle symbol
  • List item using the square symbol
  • List item using no TYPE attribute
footer goes here