Basics

HTML

Java

Colors

Frames

Tables

Fonts

Graphics

Links

Contact

how do i make numbered lists?

 

Making a numbered list is really easy, and it's a great tool for organizing information on your Web site. Just copy and paste this code into your html document (add your own info):

<OL>
<LI>Cat
<LI>Dog
<LI>Bird
</OL>


It will look like this:

  1. Cat

  2. Dog

  3. Bird


To substitute Roman numerals replace the <OL> tag with this one:

<OL type="I">

This will be the result:

  1. Cat

  2. Dog

  3. Bird


Need alphabetical order? Replace the <OL> tag with this one:

<OL type="A">

This will be the result:

  1. Cat

  2. Dog

  3. Bird