HTML Ordered List
Ordered HTML List
- An unordered list starts with the <ol> tag.
- Each list item starts with the <li> tag.
- The list items will be marked with numbers by default:
Input:-
<html><body> <h3>An Ordered HTML list</h3><ol> <li>MILK</li> <li>Tea</li> <li>COFFEE</li></ol> </body></html>
Output:-
An ordered HTML list
<html>
<body>
<h3>An Ordered HTML list</h3>
<ol>
<li>MILK</li>
<li>Tea</li>
<li>COFFEE</li>
</ol>
</body>
</html>
Output:-
An ordered HTML list
Comments
Post a Comment