If I was given a task to create an ordered list in HTML, this is how I would have implemented it.
...
<ol>
Ordered list
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ol>
...
Further, If I had to extend it to a nested list, I woul...