HTML ordered list with number type

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

<ol type="1">
    <li>water</li>
    <li>flour</li>
    <li>milk</li>
    <li>juice</li>
    <li>apple</li>
</ol>

</body>
</html>

Responses

0 Replies