Ordered Lists and Unordered Lists
- In ordered lists, the list items are preceded by numbers when displayed in a browser
- For example:
- First Item
- Second Item
- The ordered list begins with the <OL> tag; each item is preceded by the <LI> tag
and the list ends with the </OL> tag
- For example, the tags for the list above are:
<OL>
<LI>First Item
<LI>Second Item
</OL>
- In unordered lists, the list items are preceded by bullets when displayed in a browser
- For example:
- The unordered list begins with the <UL> tag; each item is preceded by the <LI> tag
and the list ends with the </UL> tag
- For example, the tags for the list above are:
<UL>
<LI>First Item
<LI>Second Item
</UL>

Return to Beginning
This resource was produced by the Boston College InfoEagle Team.
infoeagle@bc.edu