Tuesday 17 July 2012

How to create Different types of ordered lists using html


<!DOCTYPE html>
<html>
<body>

<h4>Numbered list:</h4>
<ol>
 <li>plum</li>
 <li>lemon</li>
 <li>juice</li>
 <li>Oranges</li>
</ol>

<h4>Letters list:</h4>
<ol type="A">
 <li>papays</li>
 <li>banyan</li>
 <li>Lemons</li>
 <li>Oranges</li>
</ol>

<h4>Lowercase letters list:</h4>
<ol type="a">
 <li>Apples</li>
 <li>Bananas</li>
 <li>Lemons</li>
 <li>coconut</li>
</ol>

<h4>Roman numbers list:</h4>
<ol type="I">
 <li>Apples</li>
 <li>Bananas</li>
 <li>Lemons</li>
 <li>Oranges</li>
</ol>

<h4>Lowercase Roman numbers list:</h4>
<ol type="i">
 <li>Flowers/li>
 <li>rose</li>
 <li>Lemon</li>
 <li>Oranges</li>
</ol>

</body>
</html>

0 Responses to “How to create Different types of ordered lists using html”

Post a Comment