Tuesday 17 July 2012

How to create Different types of unordered Lists sing html


<!DOCTYPE html>
<html>
<body>

<h4>Disc bullets list:</h4>
<ul type="disc">
 <li>Banana</li>
 <li>Bananas</li>
 <li>Lemon</li>
 <li>Orange</li>
</ul>

<h4>Circle bullets list:</h4>
<ul type="circle">
 <li>Apples</li>
 <li>Bananas</li>
 <li>plum</li>
 <li>palm</li>
</ul>

<h4>Square bullets list:</h4>
<ul type="square">
 <li>Carrot</li>
 <li>Beans</li>
 <li>cocoa</li>
 <li>Orange</li>
</ul>

</body>
</html>

0 Responses to “How to create Different types of unordered Lists sing html”

Post a Comment