ITS Home Tech Support Laptop Program E Learning Media Services Communications

Web Services Home

How to obtain Webspace

Course1

Desire2Learn

Web Accessibility Guidelines

WSU Web Policy

HTML Tutorial

FTP Tutorial

Student Webs

Student Clubs

Webmail

 

Ordered Lists

The Ordered List, also known as the Numbered List, is very similar in structure to the unordered list, except each list item has a number in front of it, instead of a bullet. Also, the opening tag for the list is <ol> instead of <ul>, and the closing tag is </ol> instead of </ul>. List Items within the list still use the same tags.

What you type: What you see:
<ol>
<li>Bread
<li>Cereal
<li>Cookies
<li>Frozen pizzas
<li>Ice Cream
</ol>

  1. Bread
  2. Cereal
  3. Cookies
  4. Frozen pizzas
  5. Ice Cream

<---Back to Unordered Lists    On to Definition Lists--->