Ordered List  - <OL>   -  </OL>

Previous- OBJECT - External object  |  Next-OPTGROUP - Option group

Description
Replicates a numbered (ordered) list. The default is numbered style as in 1,2,3 but the TYPE attribute can be used to change this by TYPE=n where n=1 For Arabic (default) n=2 For Capital Letters n=3 for Small letters n=4 for large roman numerals n=5 for small roman numerals The START attribute dictates which number or character the list starts with. Lists can be nested, each sub list being numbered independently from its parent list.
Attributes
NameValuesDescription
classclassnameClass of the element which is used to associate the element with a style sheet.
compactDeprecated under HTML 4.0, this requires the browser to compact the list into a smaller space by removing white space.
dirltr|rtlThe direction in which text flows when surrounded by text which flows in different directions.
event_namescript_codeDefines script to run on event such as OnMouseOver
idstringA unique name to identify an element.
langlanguage_typeThe ISO description for the language of the element.
languagejavascript|jscript|vbscript|vbs
startnumberStarting number in numbered list
stylestringSpecifies style information for the element.
titlestringTitle for element which is often displayed as a tool-tip when the cursor hovers over the element.
type1|a|a|i

Example
<ol>
<li>bulleted item number one
<li>second line
<li>this line of bulleted text
</ol>
Will be displayed as :
  1. bulleted item number one
  2. second line
  3. this line of bulleted text

Compatability
HTMLNETSCAPEINTERNET EXPLORER
4.1N2N3N4N6IE3IE4IE5IE6
YES YES YES YES YES YES YES YES YES

Previous- OBJECT - External object  |  Next-OPTGROUP - Option group