+ 1
What is <ol>and </ol>
I'm learning list and I wanna know what <ol>and</ol> mean https://code.sololearn.com/W0sNK8Df9xC8/?ref=app
3 Answers
+ 12
<ol></ol> means ordered list
<ol> => Starting tag
</ol> => Corresponding end tag
<ol>
<li>Donuts</li>
<li>Pizza</li>
</ol>
Output:
1. Donuts
2. Pizza
+ 11
Good luck and Happy coding
+ 2
ohhh