HTML Ordered list

A simple example of an ordered HTML list
<!DOCTYPE html>
<html>
<head>
</head>    
<body>

<ol>
    <li>water</li>
    <li>flour</li>
    <li>milk</li>
    <li>juice</li>
    <li>apple</li>
</ol>

</body>
</html>

Responses

0 Replies