creating a list html code example
Example 1: 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>
Example 2: hrml bulet points
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>