The start attribute of the OL element specifies the starting number of the first item.
<ol start="5">
<li>first list item</li>
<li>second list item</li>
<li>third list item</li>
</ol>
| Attribute | Value | Explanation |
|---|---|---|
| start=" " | number | the number to start on |
The use of this attribute is deprecated.
You can use it with the type attribute.
<ol type="A" start="5">
<li>first list item</li>
<li>second list item</li>
<li>third list item</li>
</ol>
<ol start="5">
<li>First list item</li>
<li>Second list item</li>
<li>Third list item</li>
</ol>
<ol type="A" start="5">
<li>First list item</li>
<li>Second list item</li>
<li>Third list item</li>
</ol>