HTML ordered list with lowercase roman numbers type
              A simple example of an ordered HTML list with lowercase roman numbers type.            
                        <!DOCTYPE html>
<html>
<head>
</head>    
<body>
<ol type="i">
    <li>water</li>
    <li>flour</li>
    <li>milk</li>
    <li>juice</li>
    <li>apple</li>
</ol>
</body>
</html>