
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.
- Item #1
- Item #2
- Item #3
- 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:
- Item 1
- Item 2
- Item 3
- Item 4
<<>ol type="a"> will give you LOWER case letters, like this:
- Item 1
- Item 2
- Item 3
- Item 4
<<>ol type="i"> will give you small Roman numerals like this:
- Item 1
- Item 2
- Item 3
- Item 4
<<>ol type="I"> will give you LARGE Roman numerals as below:
- Item 1
- Item 2
- Item 3
- Item 4
Please go to the next page for Definition Lists
