Friday, October 17, 2014

Write a HTML program to demonstrate the use of <OL> tag.


Write a HTML program to demonstrate the use of <OL> tag.
Code :ol.html

<html>
<head>
<title>example of OL tag</title>
</head>
<body>
<ol type="1" >
<li>b.c.a</li>
<li>b.com</li>
<li>b.a</li>
</ol>
<ol type="a" start="2" >
<li>f.y.b.c.a</li>
</ol>
<ol type="i" start="2">
<li>s.y.b.c.a</li></ol>
<ol type="a" start="16">
<li>t.y.b.c.a</li></ol>
</body>
</html>


No comments: