Computer Science, asked by jatinmohan58, 7 months ago

what are the different attributes <OL> tags? Explain the type of attribute in detail.​

Answers

Answered by kokane73
1

Answer:

The <ol> tag also supports the Event Attributes in HTML. More Examples. Example. Set different list types (with CSS):. <ol style="list ...

Answered by ItźDyñamicgirł
9

\huge{\boxed{\fcolorbox{cyan}{pink}{answer}}}

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

The <li> tag is used to define each list item.

Tip: Use CSS to style lists.

Tip: For unordered list, use the <ul> tag.

<ol>

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

</ol>

<ol start="50">

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

</ol>

Similar questions