HTML-CODE | EXPLANATION / EXAMPLE
|
<ol>
<li>text</li>
<li>text</li>
<li>text</li>
</ol>
| Makes a numbered list using the default number type:
- text
- text
- text
|
<ol start="5">
| Starts a numbered list, first # being 5.
- This is one line
- This is another line
- And this is the final line
|
<ol type="A">
| Starts a numbered list, using capital letters.
- This is one line
- This is another line
- And this is the final line
|
<ol type="a">
| Starts a numbered list, using small letters.
- This is one line
- This is another line
- And this is the final line
|
<ol type="I">
| Starts a numbered list, using capital roman numbers.
- This is one line
- This is another line
- And this is the final line
|
<ol type="i">
| Starts a numbered list, using small roman numbers.
- This is one line
- This is another line
- And this is the final line
|
<ol type="1">
| Starts a numbered list, using normal numbers.
- This is one line
- This is another line
- And this is the final line
|
<ol type="I" start="7">
| An example of how type and start can be combined.
- This is one line
- This is another line
- And this is the final line
|