a list in html code example
Example 1: html lists
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
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>
Example 3: bullet list html
<ul>
<li>Eggs</li>
<li>Pancakes</li>
<li>Jelly</li>
</ul>