<ol> Tag in HTML

In this article i am going to explain about ol tag in HTML
  • 1324

Definition

<ol> tag is used to insert the ordered list in the web page. you must close this tag by </ol>. This  list can be numeric or alphabetical.

To add the list item in ordered list use <li>.

Supporting Browsers

Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.

Example
 

<html>
<head>
    <title></title>
    <body>
        This article denote ordered list
        <ol>
            <li>First Item</li>
            <li>Second Item</li>
            <li>Third Item</li>
        </ol>
    </body>
</html>

Output

ordere2.jpg

Further Readings

You may also want to read these related articles

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.