Computer Science, asked by 8asiddhantsharma07, 5 months ago

give the code for ordered list fast and breifly​

Answers

Answered by meghana6161
0

Answer:

The HTML <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical.

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>

Answered by BlastOracle
1

Explanation:

Type Description

type="1" The list items will be numbered with numbers (default)

type="A" The list items will be numbered with uppercase letters

type="a" The list items will be numbered with lowercase letters

type="I" The list items will be numbered with uppercase roman numbers

type="i" The list items will be numbered with lowercase roman numbers

Similar questions