Creating a Bulleted List in HTML

To create a list like this:

  • One
  • Two
  • Three

Use the following code:

<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>

The ul stands for unordered list. The li stands for list item.