Unordered lists are very useful when you want to make a list where the order of the list items is not important. Unordered lists are also very easy to make. To begin an unordered list, type <UL>. Begin each item in the list with <LI>, which signifies a "list item". When you are finished with the list, type the closing tag, </UL>.
How to make an unordered list:
<UL>
Begin the unordered list
<UL>
<LI>The first item in the list
Type <LI> before each list item
(<LI> does not require a closing tag)
<UL>
<LI>The first item in the list
<LI>The second item in the list
<LI>The third item in the list
Insert all the items of the list
<UL>
<LI>The first item in the list
<LI>The second item in the list
<LI>The third item in the list
</UL>
To end the unordered list, type the closing tag
|