as

List Tags Demo...

Demonstrate the List Tags Demo......


<ul> - An unordered list. This will list items using plain bullets.
<ol> -  An Ordered list. This will use different schemes of numbers to list your items.
<li> -

Code :-

<!List Tags--------------->

<HTML>
<HEAD>
	<TITLE>LIST TAGS</TITLE>
</head>
<body bgcolor="cyan">
<h1>List Tag</h1>
<h3>Ordered List Default </h3>
	<ol>
		<li>F.Y.B.A.</li>
		<li>S.Y.B.A.</li>
		<li>T.Y.B.A.</li>
	</ol>
<h3>Ordered List for a,b,c,.... </h3>
	<ol type="a">
		<li>F.Y.B.COM.</li>
		<li>S.Y.B.COM.</li>
		<li>T.Y.B.COM.</li>
	</ol>
<h3>Ordered List for i,ii,iii,.... </h3>
	<ol type="i">
		<li>F.Y.B.Sc.</li>
		<li>S.Y.B.Sc.</li>
		<li>T.Y.B.Sc.</li>
	</ol>
<h3>UnOrdered List for Square </h3>
	<ul type="square">
		<li>BA</li>
		<li>BCOM</li>
		<li>BSC</li>
	</ul>
</body>
</html>

Output :- Click view Live Output