An ordered list is an HTML feature that tells the browser to take all the elements and number them sequentially. The HTML for this looks like this.

<OL>
<LI> the first item in the list
<LI> the second item in the list
<LI> the third item in the list
</OL>

The output of the following would look like this:

  1. the first item in the list
  2. the second item in the list
  3. the third item in the list

Another kind of list is the unordered list. You can find out about what tags you can use on Everything 2 by looking at E2 HTML tags.

Log in or register to write something here or to contact authors.