<ol> Tag in HTML 5

In this article I am going to tell about <ol> Tag in HTML 5.
  • 1955

Definition

<ol> Tag is used for defining ordered list.

Supporting Browsers

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

Example
 

<html>
<head></head>
       <body>

           <ol>
              <li>C#</li>
              <li>ASP</li>
          </ol>
          <ol start="4">
           <li>ASP</li>
           <li>C#</li>
        </ol>
        </body>
</html>

Output

ol.JPG

You may read more about HTML 5 Tags here

Ask Your Question 

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

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.