Ordered List
An ordered list is used when the order of items is important. Items are numbered by default.
Example:
<ol>Changing Number Style (Type Attribute)
<li>Step 1: Preheat oven</li>
<li>Step 2: Mix ingredients</li>
<li>Step 3: Bake for 30 minutes</li>
</ol>
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>
Qus. 1 : Which of the following is used to create an ordered list in HTML?
- <ul>
- <ol>
- <pl>
- <hl>
- LI
- UL
- OI
- None of the above
- <ol>
- <ul>
- <li>
- <ll>
- <ol type = “1” start = “5”>
- <ol type = “1” num = “5”>
- <ol type = “1” begin = “5”>
- <ol type = “1” initial = “5”>
- <ol type="1" start="5">
- <ol type = “1” num = “5”>
- <ol type="5" num="5">
- <ol type = “1” initial = “5”>
Programs
HTML code for creating the following output
html code to design multiple list
html code to design complex nested list