1) Write an HTML code to generate the following output.
Maharashtra
o Pune
I. Dighi
II. Moshi
III. ShivajiNagar
o Mumbai
I. Santacruz
II. Vikroli
III. Boisar
Answers
Answered by
0
Answer:
describe the effects of exercise on muscular system.
Answered by
1
Answer:
<!DOCTYPE html>
<html lang="eng">
<head>
<title>
list
</title>
</head>
<body>
<ul type="square">
<li>Maharashtra</li>
</ul>
<dd><ul type="circle">
<li>Pune</li>
<dd><ol>
<li>Dighi</li>
<li>Moshi</li>
<li>Shivajinagar</li>
</ol></dd>
</ul></dd>
<dd><ul type="circle">
<li>Mumbai</li>
<dd><ol>
<li>Santakruiz</li>
<li>Vikroli</li>
<li>Navi Mumbai</li>
</ol></dd>
</ul></dd>
</body>
</html>
Explanation:
Similar questions