Unordered Lists

9/30/99

HTML provides three list facilities, ordered, unordered and definition lists. Ordered lists can include numbers or letters for the ordering. To create an unordered list you use the <UL>...</UL> tags. In between these two tags you specify the list items that should appear using the <LI>...</LI> tags. With unordered lists you can set the bullet type by using the TYPE attribute. The default is a solid, black circle bullet. TYPE=CIRCLE is white filled circle, TYPE=SQUARE is filled, black square.You can also nest unordered lists as shown by the last list on this page. The bullets should automatically change on each subsequent nested list.


Example Unordered List (default)


Example Unordered List (open circle)


Example Unordered List (solid square)


b>Example Nested Unordered List