In html, which of the tag is used to creates a number list?
Answers
Answered by
6
Here is your Answer:
An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.
The list items will be marked with numbers by default:
Example
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
I hope this helped you so plz rate the answer accordingly...
Answered by
4
Answer:<ul> Defines an unordered list
<ol> Defines an ordered list
<li> Defines a list item
<dl> Defines a description list
Explanation:
Similar questions