1. Observe the following web page and write the HTML code to generate it.
Global Warming
Global warming is the observed century-scale rise in the average temperature of Earth's
climate system.
Since the early 20th century, the global air and sea surface temperature has increased
about 0.8°C (1.4 °F), with about two-thirds of the increase occurring since 1980. Initial
causes of temperature changes:
Greenhouse gases
Particulates and soot
Solar Activity
Observed and expected environmental effects
Natural systems Ecological systems Long-term effects Large-scale and abrupt impacts
For more details
Note the following points while generating the web page:
• Title of page is "Global Warming"
• Link colour is green
• Font style for the page is Arial
• Heading of the page is blue
• Image used is "warming.png"
• Table border is 2px and border colour is red
• Use links as:
a) For Greenhouse gases as one.html
b) For Particulates and soot as two.html o For Solar activity as three.html
c) E-mail id for bottom message is [email protected]
Answers
HTML Code :
<html>
<head>
<title>Global Warming</title>
</head>
<body link = "green" alink = "green" vlink ="green">
<h1 align = "center">
<font color = "blue" style="arial">
Global Warming.
</font></h1>
<br>Global warming is the observed century-scale rise in the average temperature of Earth's
climate system.
<br>
Since the early 20th century, the global air and sea surface temperature has increased
about 0.8°C (1.4 °F), with about two-thirds of the increase occurring since 1980.
<IMG src = "warming.png" height = "100" width ="100" align = "right">
<table align = "center" cellpadding="10" bordercolor = "red" width="80%" border="2">
<caption>
Observed and expected environmental effects
</caption>
<tr>
<td valign=middle>Natural Systems</td>
<td valign=middle>Ecological Systems</td>
<td valign=middle>Long-term effects</td>
<td valign=middle>Large scale and abrupt impacts</td>
</tr>
</table>
<br>
Links
<ul>
<li><A href = "one.html">For Greenhouse gases</A></li>
<li><A href = "two.html">For Particulates and soot</A></li>
<li><A href = "three.html">For Solar activity</A></li>
<li>
<A href = "mailto : [email protected]">contact us</A>
</li>
</ul>
</body>
</html>
Output page :
Along with the page, you can find the warming.png file used in this code, in the attachments below.
NOTE :
I have attached the notepad file code in the attachments. You can directly download, rename the extension from .txt to .html and run it.
Learn more :
- Similar question as this one. You can go through their codes too to learn a bit more.
https://brainly.in/question/8351855
- Know about HTML here.
brainly.in/question/643321