HTML unordered list

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

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

</body>
</html>

Responses

0 Replies