|
<h3>An Ordered List</h3>
<ol type="A" start="4">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ol>
|
|
The ordered list is a numbered list of items, perfect for
explaining step-by-step instructions or for creating an outline (complete
with links to corresponding sections, if desired) of a larger document.
You may create an ordered list anywhere in the BODY section of your HTML
document.
The type=A attribute represents the symbols
that should be used in the ordered list: A for capital letters, a for
small letters, I for capital roman numerals, i for small roman numerals,
and I for numbers, which is the default.
The start=4 attribute sets the initial value
for list numbering, here the list would start at 4. The START value is always numeric and is converted
antomatically, according to the TYPE value. Simply leave this out if you want to start numbering at 1.
Any text entered after the <ol> tag and before the first <li>
tag will appear with the same indentation as the first item in the list,
but without a number.
Your data goes between the <li> and </li>
tags.
|