What is the ordered list
Hello,
What is the ordered list?
How does it work?
Where does it use?
Please tell me about details.
Is ordered list important to web page?
Hello,
What is the ordered list?
How does it work?
Where does it use?
Please tell me about details.
Is ordered list important to web page?
Hello,
An ordered list is of items where list items are shown in ordered.
In ordered tag list number auto create.
There are two elements to create ordered list those are <ol> and <li>
Example:
<ol>
<li>First list item. </li>
<li>Second list item.</li>
<li>Third list item. </li>
</ol>
Here the sequent of the code must be followed.
Thanks.
If you want to list something in sequence or numbered, you‘ll have to use tag “<ol>”
Example:
If we want to show result of a 100meter Race
html code for ordered list
<ol>
<li>Justin Gatlin</li>
<li>David</li>
<li>Usain Bolt</li>
<li>Yohan Blake</li>
</ol>
Result that will appear in browser:
1. Justin Gatlin
2. David
3. Usain Bolt
4. Yohan Blake