You are on page 1of 2

PRACTICAL – 7

<html>
<head>
<title>ORDERED LIST</title>
<body bgcolor="yellow">
<h2 align="center">ILLUSTRATION OF ORDERED LIST</h2>
<h5>NUMBERED LIST</h5>
<ol type="1">
<font size="3" color="red” style="times roman">
<li>PEACHES</li>
<li>APRICOT</li>
<li>MANGO</li></font></ol>
<h5>ALPHABET LIST</h5>
<ol type="A">
<font size="3" color="red” style="times roman">
<li>PEACHES</li>
<li>APRICOT</li>
<li>MANGO</li></font></ol>
<h5>ROMAN LIST</h5>
<ol type="I">
<font size="3" color="red” style="times roman">
<li>PEACHES</li>
<li>APRICOT</li>
<li>MANGO</li></font></ol>
<h5>SMALL ALPHABET LIST</h5>
<ol type="a">
<font size="3" color ="red" style="times roman">
<li>PEACHES</li>
<li>APRICOT</li>
<li>MANGO</li></font></ol>
<h5>SMALL ROMAN LIST</h5>
<ol type="i">
<font size="3" color="red" style="times roman">
<li>PEACHES</li>
<li>APRICOT</li>
<li>MANGO</li></font></ol>
</body>
<head>
</html>

You might also like