![]() | ![]() |
Create an unordered list of items, where unordered means the individual items
are not numbered, but have a bullet in front of them. If you want numbered
items use an ordered list. The items in the list are identified with the LI tag. |
![]() | |
COMPACT![]() |
Show the list in a compact way, taking up less space. |
TYPE![]() ![]() ![]() |
The default unordered list has a default progression of bullet types that
changes as you move through indented levels. From a solid disc, to a circle to
a square. You can change this default using the TYPE attribute. Allowed values for TYPE are CIRCLE, DISC, and SQUARE. |
![]() | ![]() |
Source: | A simple unorderd list : <UL> <LI>The first item of the list. <LI>The second item of the list. </UL> |
Result: |
A simple unorderd list :
|
Source: | Nested unordered lists with assigned types : <UL TYPE=SQUARE> <LI>The first item of the list. <LI>The second item of the list. <UL TYPE=DISC> <LI>The first item of the nested list. <LI>The second item of the nested list. </UL> </UL> |
Result: |
Nested unordered lists with assigned types :
|