Ordered Lists

Attributes in ordered lists, create lists that have numbers letters or Roman numerals in front of them INSTEAD of symbols or shapes.



Here <<>ol> begins the list and <<>/ol> goes at the end. See the results below.

  1. Item #1
  2. Item #2
  3. Item #3
  4. Item #4


The full code is:

<<>ol> <<>li>Item #1<<>/li> <<>li>Item #2<<>/li> <<>li>Item #3<<>/li> <<>li>Item #4<<>/li> <<>/ol>

These next ones are pretty simple, just by changing the attribute within <<>ol type=???> you get different results

<<>ol type="A"> will give you UPPER case letters, like this:

    1. Item 1
    2. Item 2
    3. Item 3
    4. Item 4


    <<>ol type="a"> will give you LOWER case letters, like this:

    1. Item 1
    2. Item 2
    3. Item 3
    4. Item 4


    <<>ol type="i"> will give you small Roman numerals like this:

    1. Item 1
    2. Item 2
    3. Item 3
    4. Item 4


    5. <<>ol type="I"> will give you LARGE Roman numerals as below:

      1. Item 1
      2. Item 2
      3. Item 3
      4. Item 4


      Please go to the next page for Definition Lists