Skip to main content

ORDER LIST

 

Ordered HTML List

 Ordered list starts with the <ol> tag. Each list item starts with the <li> tag.

The list items will be marked with numbers by default:

<! doctype>

<html>

<head>

<title>elearn999.com</title>

</head>

<body>

<ol>

<li>jan</li>

<li>feb</li>

<li>march</li>

<li>april</li>

<li>may</li>

<li>june</li>

</ol>

</body>

</html>

OUTPUT






Comments