HTML <ol> Tag with the 'start' Attribute

<p>Besides the top 3, the next most popular fruit are:</p>
<ol start="4">
<li>Apple</li>
<li>Peaches</li>
<li>Grapes</li>
</l>

The above example demonstrates usage of the ol element with the start attribute.

The start attribute can be used to provide the value of the first list item — therefore providing the starting value of the list.