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:-…
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 type="1"> <li>India</li> <li>USA</li> <li>China</li> <li>England</li> <li>Canada</li> </ol>
Output:-…