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.
HTML List
There are a total of three types of bullet lists. These three kinds are discs, circles, and squares.
This is an example of a disc list:
Term 1
Term 2
Term 3
Term 4
Term 5
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:
Term 1
Term 2
Term 3
Term 4
Term 5
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:
Term 1
Term 2
Term 3
Term 4
Term 5
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>
This is an example of a numbered list:
Term1
Term 2
Term 3
Term 4
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:
Term 1
Term 2
Term 3
Term 4
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>