|
How to create a bullet list
Bullet lists are made with the tag <ul> and each bullet is represented by the <li> tag. The <li> tag does not need
to be closed, but the <ul> tag does need to be closed with the </ul> tag. Below is an example of a bullet list:
<ul>
<li>First bullet</li> <li>Second bullet</li> <li>Third bullet</li> <li>Fourth bullet</li> </ul> This is the output of the code
*NOTE* that each <li> tag comes with it's own line breaks (<br>) so don't put extra <br> or <p> tags.
To get different styled bullets, you can use "type" in the <ul> tag to used different kind of style of bullets.
<ul type="circle">
To get square bullets:
<ul type="square">
|