Computer Science, asked by sreenasarkar, 10 months ago

__________ tag is used to create a list of certain items in a specific order.

Answers

Answered by ridhimakh1219
0

<ol> tag is used to create a list of certain items in a specific order.

Explanation:

<ol> tag in HTML

An ordered list in HTML is created using the tag < ol >.

It will display a list of items in a particular sequence.

An item in given list usually begins with the element < li>.

Example:

<ol>

   <li>My name is John</li>

   <li>I am 20 years old</li>

   <li>I live in Italy </li>

</ol>

Output

1. My name is John

2. I am 20 years old

3. I live in Italy

Answered by babundrachoubay123
0

<ol> tag is used to create a list of certain items in a specific order

Explanation:

This is a tag that is used under HTML list that is used to create a list of certain items in a specific order.

Similar questions