Friday, October 17, 2014

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


Write a HTML program to demonstrate the use of <UL> tag.
Code :ul.html
<html>
<head>
<title>example of UL tag</title>
</head>
<body>
<ul type="disc">
<li>f.y.b.c.a</li>
<li>s.y.b.c.a</li>
<li>t.y.b.c.a</li>
</ul>
<ul type="circle">
<li>f.y.b.com</li>
<li>s.y.b.com</li>
<li>t.y.b.com</li>
</ul>
<ul type="square">
<li>f.y.b.b.a</li>
<li>s.y.b.b.a</li>
<li>t.y.b.b.a</li>
</ul>
</body>
</html>

No comments: