How to make bullets

Difficulty: Beginners/Intermediate
Html/CSS

Bullets are great if you have a lists and or even better site updates.
the following codes are for the indent, like in the list above. <ul></ul><xmp> and for the bullets: <xmp><li></li> and if you want to make a list of 5 things it will look like this <li></li> <li></li> <li></li> <li></li> <li></li> so for an indented list like what i had above the codes will be like <ul> <li></li> <li></li> <li></li> </ul> you can enter the codes like so, spacing it out makes it easier and less confusing
so lets say i want to make a list of what i want to add on to my site, i will code it like this: <ul> <li>Clean up folders</li> <li>Make more tutorials</li> <li> Start a contest</li> <li> Start making a reviews section</li> </ul> all that above will look like this
  • Clean up folders
  • Make more tutorials
  • Start a contest
  • Start making a reviews section