how to list in html code example
Example 1: html lists
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Example 2: html lists
Unordered list
<ul>
<li>something</li>
</ul>
Ordered list
<ol>
<li>something</li>
</ol>
Example 3: 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>