View Full Version : different types of ordered lists


Douglas
08-25-2005, 09:49 PM
hope this helps! :D


ok basic ordered list (numbers)

<ol>
<li>Object1</li>
<li>Object2</li>
</ol>


roman numerals I II III IV V VI etc..

<ol type="I">
<li>Object I</li>
<li>Object II</li>
</ol>


alphabetical (uppercase)

<ol type="A">
<li>Object A</li>
<li>Object B</li>
</ol>


alphabetical (lowercase)

<ol type="a">
<li>Object a</li>
<li>Object b</li>
</ol>


numbered again

<ol type="1">
<li>Object1</li>
<li>Object2</li>
</ol>


numbered start a certain number

<ol type="1" start="83">
<li>Object 83</li>
<li>Object 84</li>
</ol>


numbered with certain numbers

<ol type="1" start="33">
<li value="34">Object 34</li>
<li value="544">Object 544</li>
</ol>


alphabetical lowercase start on certain letter

<ol type="a" start="10">
<li>Object j</li>
<li>Object k</li>
</ol>


alphabetical uppercase start on certain letter

<ol type="A" start="24">
<li>Object X</li>
<li>Object Y</li>
</ol>


roman starting from certain

<ol type="I" start="11">
<li>Object XI</li>
<li>Object XII</li>
</ol>


roman certain value

<ol type="I">
<li value="22">Object XXII</li>
<li value="55">Object LV</li>
</ol>


hope this helps in anyway!!