What does the ol means? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What does the ol means?

3rd Apr 2021, 2:34 AM
Agbasi victor
Agbasi victor - avatar
6 Answers
+ 2
The <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical. Ex- <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> <ol start="50"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol>
3rd Apr 2021, 2:43 AM
SAN
SAN - avatar
+ 2
IN HTML: ol = ordered list (adds number before list) ul = un-ordered list (adds symbol before list)
3rd Apr 2021, 2:46 AM
Rejwan Islam
Rejwan Islam - avatar
+ 2
ordered list Learn more at: https://www.w3schools.com/TAGs/tag_ol.asp
3rd Apr 2021, 2:46 AM
Josh Greig
Josh Greig - avatar
+ 2
Hello there! :) The ol tag defines a type of list, an ordered list. Generally and default it uses natural numbers. For more :) https://www.sololearn.com/learn/HTML/1032/?ref=app
3rd Apr 2021, 8:59 AM
Matthew
Matthew - avatar
+ 2
Agbasi victor In HTML There are two types of lists 1. Ordered list(adds number before list) 2.unordered list(adds symbol before list) ol is used for ordered list. Ex. <ol> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> </ol>
4th Apr 2021, 8:46 PM
❤️😍Prerana😍❤️
❤️😍Prerana😍❤️ - avatar
+ 1
<ol> tag mean defines an order list can be numerical or alphabetical example: <ol> <li> ginger</li> <li> mushroom</li> <li> potato</li> <ol start="10
quot;> <li> ginger</li> <li> mushroom</li> <li> potato</li> </ol>
4th Apr 2021, 7:54 AM
febrio pratama
febrio pratama - avatar