HTML Unordered Lists
An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
The list items are marked with bullets (typically small black circles).
<ul>
<li>Powder</li>
<li>Shake</li>
</ul>
How the HTML code above looks in a browser:
Powder
Shake
HTML Ordered Lists
An ordered list starts with the <ol> tag. Each list item starts with...
