HyperTextMarkupLanguage

HTML basics

| Home | HTML basics - Agenda | Next |

Basic tags

OL - Ordered list

Appearance: <OL> </OL>
Attributes: TYPE=1|a|A|i|I, START=n, COMPACT

The appearance of the number can be controlled with the TYPE attribute:

The start attribute indicates where the list should start. An Ordered List is a list of items, each one preceded by a number and having the following format:.

<OL TYPE=A >
  <LI>John</LI>
  <LI>Paul</LI>
  <LI>George</LI>
  <LI>Ringo</LI>
</OL>


would produce

  1. John
  2. Paul
  3. George
  4. Ringo

Again, almost any item can be placed into a list: line breaks, entire paragraphs, images, or even other lists...


| Home | HTML basics - Agenda | Next |

T07D030