Computer Science, asked by Adityabarakoti4435, 11 months ago

In html, which of the tag is used to creates a number list?

Answers

Answered by gurukulamdivya
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 VS9415683932
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