+ 3
How to create a order list in html
7 Respostas
+ 6
With the ol element.
<ol>
<li>
First
</li>
<li>
Second
</li>
</ol>
+ 4
You can create an ordered list using <ol> tag. Attribute "type" lets change the type of the list item marker (it is numerical by default). More information is here: https://www.w3schools.com/tags/tag_ol.asp
+ 4
way too easier than I expected....
+ 2
With using ol tag we can make ordered list like
<ol>
<li>...</li>
<li>....</li>
</ol>
+ 1
You cannot bellieve it, but
OL mean ordered list
<ol>
<li>element 1</li>
<li>smt</li>
</ol>
0
How to make un order list