KnowledgeBoat Logo
|

Computer Studies

Define Ordered List in HTML

HTML Advanced Features

19 Likes

Answer

In an ordered list, each item is displayed along with the numbers or letters instead of bullets. The entire content of the list is enclosed in <ol> and </ol> tags and each item is enclosed in <li> and </li> tags.

For example:

<ol>
<li> English </li>
<li> Hindi</li>
<li> Maths </li>
<li> Science </li>
</ol>

Answered By

10 Likes


Related Questions