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:
This is the HTML code

<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

  • First bullet
  • Second bullet
  • Third bullet
  • Fourth bullet

*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.
You can use type="circle" in the <ul> tag to get empty circle bullets. The tag will look like:

<ul type="circle">

  • First bullet
  • Second bullet
  • Third bullet
  • Fourth bullet

To get square bullets:

<ul type="square">

  • First bullet
  • Second bullet
  • Third bullet
  • Fourth bullet
Copyright Brains That Work .
Theme by Pool theme design by Borja Fernandez. ^Top^