forked from jchoi8163/Pollution-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforest.html
More file actions
93 lines (81 loc) · 3.28 KB
/
forest.html
File metadata and controls
93 lines (81 loc) · 3.28 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
87
88
89
90
91
92
93
<html>
<style>
.jumbotron{
text-align: center;
background-color:black;
color:gray;
}
#body1{
background-color:rgba(34,139,34,0.8);
}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/2.3.0/mustache.min.js"></script>
</script>
<body id="body1">
<!--Jumbotron Header-->
<div class="container">
<div class="jumbotron">
<h1>Deforestation</h1>
<p> </p>
</div>
</div>
<!--NavTab-->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">GoGreen</a>
</div>
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="water.html">Water Pollution</a></li>
<li class="active"><a href="forest.html">Deforestation</a></li>
<li><a href="air.html">Air Pollution</a></li>
<li><a href="quiz.html">Quiz</a></li>
</ul>
</div>
</nav>
<!--carousel-->
<div class="container">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="https://cdn4.techly.com.au/wp-content/uploads/2017/05/deforestation-and-koala-799x423.jpg" alt="lost Koala" style="height:820px;",>
</div>
<div class="item">
<img src="http://www.nationalgeographic.it/images/2012/04/26/152302578-759faeeb-6ea4-4bee-9334-1aa481f445bb.jpg" alt="dead koala" style="height:820px;">
</div>
<div class="item">
<img src="https://underscience.com/wp-content/uploads/2015/10/Creative_Wallpaper_Deforestation_patients_lungs_025769_-1.jpg" alt="lungs" style="height:820px;">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div id="describe">
<div class="row">
<br><div class="col-sm-12" style="background-color:white;">The decrease amount of trees not only limited the oxygen for humans but also animals and the animals also lose their home.</div>
</div>
</div>
</div>
</body>
</html>