Computer Science, asked by Andycarlo, 8 months ago

Write the HTML code to generate following output.

Tourist Places

 Maharastra

o Pune

I. Dighi

II. Moshi

III. Shivajinagar

o Mumbai

I. Santakruz

II. Vikroli

III. Mumbra

 Uttar Pradesh

o Agra

I. Sikandra

II. M.G Road

III. New Agra

Answers

Answered by poojan
10

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>  

<ul style="list-style-type:square;">

 <li>Uttar Pradesh</li>

 <ul style="list-style-type:circle;">

  <li>Agra</li>

  <ol type="I">

   <li>Sikandra</li>

   <li>M.G Road</li>

   <li>New Agra</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

Attachments:
Similar questions