There may come a time when you want to start an ordered list on a different letter than the default.
Example using default :
Example using default :
<ol type="a">
<li>first item</li>
<li>second item</li>
<li>third item</li>
<li>fourth item</li>
</ol>
<li>first item</li>
<li>second item</li>
<li>third item</li>
<li>fourth item</li>
</ol>
- first item
- second item
- third item
- fourth item
<ol type="a" start="7">
<li>first item</li>
<li>second item</li>
<li>third item</li>
<li>fourth item</li>
</ol>
<li>first item</li>
<li>second item</li>
<li>third item</li>
<li>fourth item</li>
</ol>
- first item
- second item
- third item
- fourth item

