HOW TO create ordered lists in html HTML Ordered List order list schemes different from number lists for your item. If you are require to put your item in numbered of list then an HTML ordered list will be used. This list is create by using <ol> tag and ends with </ol> tag. The numbering start at one and incremented by the one for each successive ordered list element tagged with <li> tag and ends with </li> Following are the possible options <ol type="1"> - Default-Case Numbers. <ol type="I"> - Upper-Case Roman Numbers. <ol type="i"> - Lower Case Numbers. <ol type ="a"> - Lower case Letters. <ok type= "A"> - Lower Case Letters. HTML Ordered List Program <!DOCTYPE html> <HTML> <body> <h1> Ordered List</h1> <ol type="1" start="1"> <li>Water</li> <li>Food</li> <li>Water</li> </ol> ...