Lowercase Roman Numerals
<ol type="i">
<li>I was there</li>
<li>I am here</li>
<li>I will be there</li>
</ol>
Capital Roman Numerals
<ol type="I">
<li>I was there</li>
<li>I am here</li>
<li>I will be there</li>
</ol>
And, like the other lists, you can also choose which number to start at by adding a start="#" in the <ol> tag
Example:
<ol type="i" start="3">
<li>I was there</li>
<li>I am here</li>
<li>I will be there</li>
</ol>
|