0
What if after listing from 1 to 5, and I decided to start the numbering of another list from one(1)
HTML
4 Respostas
+ 3
Francis Mbang end first orderd list and start a new list
this will start from new index
or if you want custom index use start attribute
e.g
<ol start="50">
<li>Car</li>
<li>Bus</li>
<li>Cycle</li>
</ol>
the list will start from 50 ,then 51 then 52 and so on
+ 3
Francis Mbang welcome
+ 2
I think i didn't understand your question very clearly, but you can simply start a new list and it will be at 1.
+ 1
Amir Ahmad Thanks, your answer was helpful