HTM19
Description
Output
Source Code
Description
This web have two unordered list with differen list item types in a unordered list.
Output
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
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>
</BODY>
</HTML>