Basics

HTML

Java

Colors

Frames

Tables

Fonts

Graphics

Links

Contact

how do i make bulleted lists?

 

Just copy and paste this code (add your own info):

<UL>
<LI>Cat
<LI>Dog
<LI>Bird
</UL>

It will look like this:

  • Cat

  • Dog

  • Bird



Here's a variation of the above list, replace the <UL> tag with this tag:

<UL type="circle">

The result:

  • Cat

  • Dog

  • Bird



You can make the cirles in the above list squares instead by adding type="square" into the code (<UL type="square">). 

It looks like this:

  • Cat

  • Dog

  • Bird