-
Notifications
You must be signed in to change notification settings - Fork 0
/
causes.php
42 lines (35 loc) · 2.84 KB
/
causes.php
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
<?php
define('APP', 'running');
require 'inc/header.php'; ?>
<nav id="nav">
<ul class="cf">
<li><a href="/" rel="home">Facts</a></li>
<li class="act"><a href="causes.php">Causes</a></li>
<li><a href="act.php">Act!</a></li>
</ul>
</nav>
</header>
<main id="cont" class="cf">
<h1 class="p-title"><a href="#list">Causes</a></h1>
<p>Global warming is <a href="http://www.climatehotmap.org/about/global-warming-causes.html">primarily a problem</a> of too much greenhouse gases in the atmosphere. They act as a blanket, trapping heat and warming the planet. Greenhouse gases are produced by several human activities. The economic sectors that contribute siginificantly to these emissions are energy supply, industry, forestry, agriculture and transport.</p>
<section id="list" class="human cf">
<div>
<h2>Fossil Fuels</h2>
<p>CO<sub>2</sub> is captured by organisms, like plants, using sunlight. Remains of these organims can transform into <a href="https://en.wikipedia.org/wiki/Fossil_fuel">fossil fuels</a> over a <strong>long period of time</strong>. They contain high percentages of carbon, including petroleum, coal and natural gas. Burning them to generate warmth and energy produces CO<sub>2</sub>. They are <em>not</em> a <a href="https://en.wikipedia.org/wiki/Renewable_energy">renewable source of energy</a> since we use them quicker than they can be formed.</p>
</div>
<div>
<h2>Agricultural practices</h2>
<p>Earth’s population is <a href="http://www.worldometers.info/world-population/">growing rapidly</a>. In our growning need for food, agricultural practices aggravate the problem of global warming. The effect arise from manufacture and use of pesticides and fertilizers, fuel and oil for tractors, equipment, transportation, electricity for lighting, cooling, and heating, and emissions of CO<sub>2</sub>, methane, nitrous oxide and other greenhouse gases.</p>
</div>
<div>
<h2>Cutting down and burning forests</h2>
<p><a href="http://www.rainforestfoundation.org/climate-change/">(Rain)forests</a> are being destroyed to create pastures and plantations for agricultural purpose or to build houses. This leads to a net loss of areas that can capture CO<sub>2</sub>. Furthermore, animals lose their natural habitat and biodiversity suffers.</p>
</div>
<div>
<h2>Waste management</h2>
<p>The <a href="https://www3.epa.gov/climatechange/climate-change-waste/">disposal and treatment of waste</a> can produce emissions of several greenhouse gases. Waste prevention and recycling help address global climate change by decreasing the amount of greenhouse gas emissions and saving energy.</p>
</div>
</section>
<p>So all these facts contribute to global warming. <a href="act.php">Let’s do something about it!</a></p>
</main>
<?php require 'inc/footer.php'; ?>