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.
To create a list like this:
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.