Unordered

Unordered lists are those that which begin with dots, bullets, dashes, or other visual signifiers. These lists are great for things like ingredients in a recipe. Unordered lists, by default, get a dot in most browsers.

  • Coffee
  • Tea
  • Milk
  • Coffee
  • Tea
  • Milk
  • Coffee
  • Tea
  • Milk

To identify an unordered list, the content is contained within the unordered list tags ( <ul>...</ul> ).

As with the ordered list, each list item is contained within a list item element ( <li>...</li> ).

HTML
<ul>
  <li>List Item</li>
  <li>List Item</li>
  <li>Etc...</li>
</ul>


html list unordered