Ordered List
An ordered list is used when the order of items is important. Items are numbered by default.
Example:
<ol>
<li>Step 1: Preheat oven</li>
<li>Step 2: Mix ingredients</li>
<li>Step 3: Bake for 30 minutes</li>
</ol>
Changing Number Style (Type Attribute)You can change the numbering style using the type attribute:
- 1 (default) → type="1"
- A (uppercase letters) → type="A"
- a (lowercase letters) → type="a"
- I (Roman numerals) → type="I"
- i (small Roman numerals) → type="i"
Example:
<ol type="A">
<li>Introduction</li>
<li>Body</li>
<li>Conclusion</li>
</ol>