xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to create an ordered list in HTML
HTML Online Editor
Run Code
More HTML Sample Codes
<!DOCTYPE html> <html> <head> <title>Ordered List in HTML</title> <!-- Title of the page--> </head> <body> <!-- elements of the body will be displayed --> <h1>Examples of Ordered List in HTML</h1> <hr/> <!-- <ol> is used for ordered list in html page --> <p>Use HTML <ol>) tag to create an ordered list.<p> <p>An ordered list with type 1.<p> <ol type="1"> <!-- <ol> other type are a, A, i and I --> <li>Python</li> <li>C#</li> <li>Java</li> <li>HTML</li> <li>CSS</li> </ol> <p>An ordered list with type a.<p> <ol type="a"> <li>Python</li> <li>C#</li> <li>Java</li> <li>HTML</li> <li>CSS</li> </ol> </body> </html>