WHO WILL GIVE THE CORRECT ANSWER I WILL MAKE THEM BRAINLIEST
WAP in HTML to display following output:
Instructions:
Set the heading of the page as “Save the Earth”. It should be in ‘Arial’ font and bold with the
size 1 and color yellow
Background color of the page should be “Green”.
The subheading should be in “Verdana” font, bold, size 3 and color orange.
Rest of the text should be in ‘Times New Roman’ font, size 12 and color white and yellow.
Select and place suitable image on the web page.
Use nested list for links(as shown in the figure)
The page linked with this page are as follows:
Home: Home.html
FAQs: Faq.html
Pollution: Pollution.html
Deforestation: Deforestation.html
Poaching: Poaching.html
Forests: Forests.html
Endangered Species: Species.html
The categories ‘Controlling’ and ‘Saving’ in the unordered list are not linked to any page.
Use your own creativity to make the webpage more attractive by using style sheet, marquee, table,
iframe tags.
Attachments:
Answers
Answered by
4
<html>
<head>
<style>
h1 {
color: yellow;
font-family: arial;
font-size: 100px;;
}
h3 {
color: orange;
font-family: verdana;
font-size: 80px;
}
p {
color: orange;
font-family: Times New Roman;
font-size: 50px;
}
</style>
</head>
<body style="background-color:green;">
<h1><b>Save the Earth</b></h1>
<h2>This is a paragraph.</h2>
<img src="url" alt="alternatetext">
</body>
</html>
Save it as Home.html
Create same pages with different names and linked them
Similar questions