how to make nested list html code example
Example: html nested list
<!-- Creat a list inside list -->
<ul>
<li>Coffee</li>
<li>Tea
<!-- nested list -->
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>