|
|
Drifting Designs Tutorials > > Coding > > HTML > > Ordered ListsBasic Ordered List Different Numberers Jump Starting Basic Ordered List
Yes, can you believe that a dandelion is a vegetable? According to Wikipedia's list of vegetables, it is. Hmmm . . . Anyway, I digress. To make your own list, use the following code -
Explanation: "<ol>" stands for "ordered list". The "<li>"s tell what is supposed to be listed. Replace the vegetables names with whatever you want. Remember that the list can be extended to however long you want. Just keep adding the "<li>" lines. Different Numberers which will produce an ordered list like the one below, labeled by letters -
Option: Replace "A" with the lowercase letter a (so that your code is <ol type="a">) if you want a list like the one below -
Option: Replace "A" with the lowercase letter I, (so that your code is <ol type="I">) if you want a list like the one below -
Option: Replace "A" with the lowercase letter i, (so that your code is <ol type="i">) if you want a list like the one below -
Jump Start
To start a list at a specific number, use the following code -
Note that Jump Starting Lists only work for lists that are numbered by 1, 2, 3 . . .; they do not work for ordered lists that use letters or Roman numerals. |
|
|||||||||||||