In order to make a list on your website using code like this:
You use this code:
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
However if you want your list to be ordered like this:
You use this code:
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
- Coffee
- Tea
- Milk
You use this code:
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
However if you want your list to be ordered like this:
- Coffee
- Tea
- Milk
You use this code:
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>