Html Tips and Tricks

Tuesday, June 01, 2004

Creating Numbered Lists

Here is some basic code for this html tip.
<ol>
<li>Item Number 1
<li>Item Number 2
</ol>

It will create a numbered list like this one:
  1. Item Number 1
  2. Item Number 2

Also, you can change the code to this:
<ol type=I>
<li>Item Number 1
<li>Item Number 2
</ol>

And you get the numbers in Roman numerals:
  1. Item Number 1
  2. Item Number 2

You can also change the tip like this:
<ol type=A>
<li>Item Number 1
<li>Item Number 2
</ol>

Which creates letters instead of numbers:
  1. Item Number 1
  2. Item Number 2

Finally, you can change the A or I after the type= and you will get some lowercase roman numerals or letters, instead.
This tip will get the information organized in neat ways.
Also, see this tip on how to make normal bullets.


NEED EXTRA HELP? HAVE A SUGGESTION? HAVE SOMETHING TO ADD? PLEASE POST COMMENTS WHILE LOOKING AT ALL THESE USEFUL HTML TIPS AND TRICKS. THANK YOU!

0 Comments:

Post a Comment

<< Home


Hit Counter