Computer Science, asked by palkipapri, 4 months ago

Write an HTML code to generate a webpage in the format given below:
Save The Earth
NGO Group dedicated to saving the Earth's natural environment
Home
Faqs
Controlling
1. Pollution
2. Deforestation
3. Poaching
Saving
1. Forests
2. Endangered Species​

Attachments:

Answers

Answered by Shreyanshghosh690
24

Explanation:

<HTML>

<HEAD>

<TITLE>SAVE THE EARTH

</TITLE>

</HEAD>

<BODY>NGO Group dedicated to saving the Earth's natural environment

Home

Faqs

Controlling

1. Pollution

2. Deforestation

3. Poaching

Saving

1. Forests

2. Endangered Species

</BODY>

</HTML>

Answered by mindfulmaisel
21

"generate a webpage in the format"

Explanation:

<!DOCTYPE html>

<html>

<head>

 <title>Save the Earth</title>

 <style>

   .center {

     display: block;

     margin-left: auto;

     margin-right: auto;

     width:130px;

   }

 </style>

</head>

<body style="background:yellow;">

 <font align=center>

 <h1 >Save The Earth</h1>

 <h2 style="color:red;"> NGO Group dedicated to saving the Earth's natural environment</h2>

 </font>

 <img class="center" alt="Save The Earth"  src="https://noteasytobegreen.files.wordpress.com/2010/06/save-the-earth.jpg">

 <ul>

   <li><u>Home</u></li>

   <li><u>Faqs</u></li>

   <li>Controling

     <ol>

         <li><u>Pollution</u></li>

         <li><u>Deforestation</u></li>

         <li><u>Poaching</u></li>

     </ol>

   </li>

   <li>Saving

     <ol>

         <li><u>Forests</u></li>

         <li><u>Endangered Species</u></li>

     </ol>

   </li>

 </ul>

</body>

</html>

hence, this is to generate a webpage in the format

Similar questions