In this article, you will learn How to Create ordered or unordered List in the HTML. The HTML have two types of List. ordered List (ol) unordered list (ul) Ordered List <ol type="1"> <li>India</li> <li>USA</li> <li>China</li> <li>England</li> <li>Canada</li> </ol> Output:- India USA China England Canada in ol tag have type is the property. we can […]