-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgreenhouse-gases.html
More file actions
86 lines (86 loc) · 2.42 KB
/
Copy pathgreenhouse-gases.html
File metadata and controls
86 lines (86 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Greenhouse Gases</title>
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 0;
background-color: #2e8b57;
color: #333;
line-height: 1.6;
}
header {
background: linear-gradient(to top, #2e8b57, #005d94);
color: #fff;
padding: 1rem 0;
text-align: center;
}
main {
padding: 20px;
max-width: 960px;
margin: 20px auto;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
border-radius: 15px;
}
section {
margin-bottom: 40px;
padding: 20px;
background-color: #f7f7f7;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
section:last-of-type {
border-bottom: none;
}
h1, h2 {
color: #0000bff;
}
h3 {
color: #0000bff;
}
section p {
color: #333;
padding: 0;
border-radius: 0;
}
footer {
text-align: center;
padding: 20px;
background-color: #333;
color: #fff;
font-size: 0.8rem;
}
</style>
</head>
<body>
<header>
<h1>Greenhouse Gases</h1>
</header>
<main>
<section>
<h2>Carbon Dioxide</h2>
<p>Carbon Dioxide, also known as CO2, is one of the main greenhouse gases attributed to global warming. There are natural processes like volcanic eruptions, fires, decomposition, and just the breathing process of expelling CO2 from living things's lungs as well as human causes. Human’s burning fossil fuels for electricity, heat, and other reasons is a major part of CO2 emissions.</p>
</section>
<section>
<h2>Methane</h2>
<p>Methane comes from decomposing plant-matter, livestock’s organic matter, and natural gases. It also comes from landfills, rice farming, and fossil fuel leaks.</p>
</section>
<section>
<h2>Nitrous Oxide</h2>
<p>Nitrous Oxide is emitted due to farming practices, burning plant-matter, and burning fossil fuels.</p>
</section>
<section>
<h2>Chlorofluorocarbons</h2>
<p>Chlorofluorocarbons, or CFCs for short, are an unnatural compound created by humans. They’re used in refrigerators, dissolving agents, and propellants.</p>
</section>
</main>
<footer>
<p>© 2024 Sea Level Rise Info</p>
</footer>
</body>
</html>