The <UL> Unordered List Tag

Use of the <UL> or unordered list tag within an HTML document allows the author to easily create a formatted bullet list, or unordered list of items. The <LI> or line item tag is used to delimit each bulleted entry in the list. The <LI> tag cannot be contained outside of the beginning and closing unordered list tags. An unordered list can be contained within another unordered list if an author wishes to do so.

Some Examples...

HTML Code Result
<B>Business Items to consider</B>
<UL>
<LI>Money</LI>
<LI>Time</LI>
<LI>Lunch</LI>
<LI>Profit</LI>
<LI>Lunch</LI>
</UL>
Business Items to consider
  • Money
  • Time
  • Lunch
  • Profit
  • Lunch