You are on page 1of 1

<!

DOCTYPE html>
<head>
<title>prectical 3</title>
</head>
<body>
<h1 style="color:red;">Write a program to make a nasted list using orderd
list and unorders list in html</h1>
<center>
<h1> Courses Avaible in SOU </h1>
<span>
<h3>
Under graduate(U.G) programs
</h3>
</span>
<div>
<ol>
<li>BCA</li>
<li>Bsc</li>
<li>B.tech</li>
<li>B.voc</li>
</ol>
</div>
<span>
<h3>
Post graduate(P.G) programs
</h3>
</span>
<div>
<ul>
<li>MCA</li>
<li>Msc</li>
<li>M.tech</li>
<li>M.voc</li>
</ul>
</div>
</center>
</body>
</html>

You might also like