how to program a list in html code example
Example 1: html lists
Unordered list
<ul>
<li>something</li>
</ul>
Ordered list
<ol>
<li>something</li>
</ol>
Example 2: how to make list in html
creats an organised list
<ol>
<li>apple</li>
<li>mango</li>
<li>watermelon</li>
</ol>
creats an unorganised list
<ul>
<li>apple</li>
<li>mango</li>
<li>watermelon</li>
</ul>