HTML Tutorial
<li>
tag<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
This will create a list with three bullet points:
To change the bullet style to squares, add the type
attribute:
<ul type="square">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
To create a compact list, add the compact
attribute:
<ul compact>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>