This page shows how to make different kinds of numbered lists.
The following number options are:
- Plain / Normal Numbers
- Capital Letters
- Small Letters
- Capital Roman Numbers
- Small Roman Numbers
In addtion to these options we can specify at which number the list should start. The default start value for numbered lists is at number one (or the letter A).
Look at these examples to see the detailed syntax.
| HTML Numbered List Syntax Table | |
| HTML - Code | Explanation / Example |
| <ol type = "1"> | Starts a numbered list, using plain / normal numbers.
|
| <ol type = "A"> | Starts a numbered list, using capital letters
|
| <ol type = "a"> | Starts a numbered list, using small letters
|
| <ol type = "I"> | Starts a numbered list, using capital roman numbers
|
| <ol type="I" start="7"> | An example of how type and start can be combined
|
| <ol type = "i"> | Starts a numbered list, using small roman numbers
|

