HTML unordered list with circle type style

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

<ul style="list-style-type:circle">
    <li>water</li>
    <li>flour</li>
    <li>milk</li>
    <li>juice</li>
    <li>apple</li>
</ul>

</body>
</html>

Responses

0 Replies