Web page in html for ordered list and html tags with output
Answers
Answered by
3
<ol> tag is used to add ordered list in HTML.
This is a container element.
This also uses <li> tag to enter lsor item.
For Example,
<ol>
<li> Ht </li>
</ol>
Output :
1. Ht
Answered by
0
Answer:
For ordered list in HTML we use <ol> tag.
Explanation:
Here is the detailed explanation with example about ordered and unordered list in html.
https://codewithrasbin.com/html-for-beginners-course-lesson-7-ordered-and-unordered-list-in-html/
Hope this helps!
Similar questions