Nested List in HTML

Nested List in HTML | HTML Assignment

Please type this code in text editor and save the file with .html extension
---------------------------------------------------
<!doctype html>
<html>
<head>
<title>Nested List in HTML</title>
</head>
<body>
<h2>Nested List in HTML</h2>
<ol>
<li>India
<ol type="I">
<li>Uttar Pradesh</li>
<ol type="a">
<li>Lucknow</li>
<ul type="disc">
<li>Gomti Nagar</li>
<li>Aminabad</li>
</ul>
<li>Prayagraj</li>
<li>Basti</li>
<li>Varanasi</li>
</ol>
<li>Bihar</li>
<li>Madhya Pradesh
<ul type="circle">
<li>Indore</li>
<li>Bhopal </li>
</ul>
</li>
</ol>
</li>
<li>America
<ol type="A">
<li>New York</li>
<li>California </li>
<li>Texas </li>
</ol>
</li>
</ol>
</body>
</html>
---------------------------------------------------
Output-

html assignment



Post a Comment

0 Comments