Write a HTML code to generate following output
▪ Maharashtra
o Pune
I. Dighi
II. Moshi
III. Shivajinagar
o Mumbai
I. Santakruiz
II. Vikroli
III. Mumbra
Answers
Program:
<!DOCTYPE html>
<html>
<body>
<ul style="list-style-type:square;">
<li>Maharashtra</li>
<ul style="list-style-type:circle;">
<li>Pune</li>
<ol type="I">
<li>Dighi</li>
<li>Moshi</li>
<li>Shivajinagar</li>
</ol>
</ul>
<ul style="list-style-type:circle;">
<li>Mumbai</li>
<ol type="I">
<li>Santakruiz</li>
<li>Vikroli</li>
<li>Mumbra</li>
</ol>
</ul>
</ul>
</body>
</html>
Output:
Given in the attachment.
Learn more:
1. The correct sequence of HTML tags for starting a webpage is
brainly.in/question/31109764
2. What i s the correct HTML for adding a background color?
brainly.in/question/27607956
Explanation:
Program:
<!DOCTYPE html>
<html>
<body>
<ul style="list-style-type:square;">
<li>Maharashtra</li>
<ul style="list-style-type:circle;">
<li>Pune</li>
<ol type="I">
<li>Dighi</li>
<li>Moshi</li>
<li>Shivajinagar</li>
</ol>
</ul>
<ul style="list-style-type:circle;">
<li>Mumbai</li>
<ol type="I">
<li>Santakruiz</li>
<li>Vikroli</li>
<li>Mumbra</li>
</ol>
</ul>
</ul>
</body>
</html>
Output:
Given in the attachment.
Learn more:
1. The correct sequence of HTML tags for starting a webpage is
brainly.in/question/31109764
2. What i s the correct HTML for adding a background color?
brainly.in/question/27607956