Unordered Lists

An ordered list puts your items into a numbered list, but you may not want to have numerical values for each of you items. If that’s the case, then you want to create an unordered list.

The HTML tag for unorderd lists is <ul>. The HTML tag for an item within a list is <li>. Remember that the <li> code is used for items in both ordered and unordered lists.

An HTML example of an unordered list would look like this:

Three things you need for your project:
<ul>
 <li>print story</li>
 <li>video package</li>
 <li>external links</li>
</ul>

This is how that code would be displayed on the web page.

Three things you need for your project:
  • print story
  • video package
  • external links