Piczo

Log in!
Stay Signed In
Do you want to access your site more quickly on this computer? Check this box, and your username and password will be remembered for two weeks. Click logout to turn this off.

Stay Safe
Do not check this box if you are using a public computer. You don't want anyone seeing your personal info or messing with your site.
Ok, I got it
Back To Graphics Home
HTML List
Bullet Lists
Numbered Lists
There are a total of three types of bullet lists. These three kinds are discs, circles, and squares.
Bullet Lists
This is an example of a disc list:

This is the code for a disc list:

<ul>
<li>Term 1
<li>Term 2
<li>Term 3
<li>Term 4
<li>Term 5
</ul>
This is an example of a circle list:

This is the code for a circle list:


<ul>
<li type=circle>Term 1
<li type=circle>Term 2
<li type=circle>Term 3
<li type=circle>Term 4
<li type=circle>Term 5
</ul>
This is an example of a square list:

This is the code for a square list:

<ul>
<li type=square>Term 1
<li type=square>Term 2
<li type=square>Term 3
<li type=square>Term 4
<li type=square>Term 5
</ul>
Numbered Lists
This is an example of a numbered list:


  1. Term1

  2. Term 2

  3. Term 3

  4. Term 4

  5. Term 5

This is the code for a numbered list:


<ol>
<li>Term 1</li>
<li>Term 2</li>
<li>Term 3</li>
<li>Term 4</li>
<li>Term 5</li>
</ol>
This is an example of a roman numerical list:

  1. Term 1

  2. Term 2

  3. Term 3

  4. Term 4

  5. Term 5
This is the code for a roman numerical list:


<ol>
<li type=I> Term 1
<li type=I> Term 2
<li type=I> Term 3
<li type=I> Term 4
<li type=I> Term 5
</ol>