+ 2
What does the ol means?
6 odpowiedzi
+ 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>
+ 2
IN HTML:
   ol = ordered list        (adds number before list)
   ul = un-ordered list   (adds symbol before list)
+ 2
ordered list
Learn more at:
https://www.w3schools.com/TAGs/tag_ol.asp
+ 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
+ 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>
+ 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="10quot;>
     <li> ginger</li>
     <li> mushroom</li>
     <li> potato</li>
</ol>



