<UL></OL>
- Unordered ListsUnordered Lists are lists that do not have any form of numbering. You must enter <LI>
before each list item.
This tag must be closed by typing </UL>
at the end of the list.
<UL>
%coreattrs %i18n %events |
D |
type=
|
[CI] |
---|---|---|
|
Specifies a filled circle bullet. | |
|
Specifies a square bullet. | |
|
Specifies an open circle bullet. | |
The type attribute controls the type of bullet that precedes an unordered list item. |
Here is an example of an unordered list:
Here is the code for the example above:
<UL>
<LI>This is the first item.
<UL>
<LI>First sub-item
<LI>Second sub-item
</UL>
<LI type="square">This item's bullet has been changed to a square.
<LI>This is the third item.
<LI type="circle">This item's bullet has been changed to an open circle.
<LI type="disk">This item's bullet has been changed to a filled circle.
</UL>