-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMax_Temperature_page.html
135 lines (95 loc) · 4.1 KB
/
Max_Temperature_page.html
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Lattitude</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/simple-sidebar.css" rel="stylesheet">
<style type="text/css">
body { background: rgb(228, 222, 222)!important; }
</style>
</head>
<body>
<div class="d-flex bg-light" id="wrapper">
<!-- Sidebar -->
<!-- /#sidebar-wrapper -->
<!-- Page Content -->
<div id="page-content-wrapper bg-white">
<nav class="navbar navbar-expand-lg navbar-light bg-light border-bottom" role="navigation">
<a href="weather_page.html" class="btn btn-info" role="button">Latitude</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto mt-2 mt-lg-0">
<li class="nav-item active">
<a class="nav-link" href="./data_page.html" >Data <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="./comparisons_page.html" >Comparisons <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Plots
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./Max_Temperature_page.html">Max Temperature</a>
<a class="dropdown-item" href="./Humidity_page.html">Humidity</a>
<a class="dropdown-item" href="./Cloudiness_page.html">Cloudiness</a>
<a class="dropdown-item" href="./Wind_Speed_page.html">Wind Speed</a>
</div>
</li>
</ul>
</div>
</nav>
<div class="container-fluid bg-white">
<h1 class="mt-4"></h1>
<div class="row" id="main">
<div class="col-md-1 box"></div>
<div class="col-md-12 box shadow-lg p-3 mb-5 bg-white rounded">
<div class="box"></div>
<h1 class="title" >Max Temperature</h1>
<hr>
<a target="_blank" href="Max_Temperature_page.html">
<img src="Resources/assets/images/Fig1.png" width="80%" height="80%" >
<p> The latitude vs temperature plot shows that as we move north of
the equator the temperature gets colder. At latitude 40-80 the temperature
ranges between 60 F to below -20 F. On the other hand, cities on latitudes
below the equator, -20 to – 60, have much warmer temperatures ranging between
40 F to ~ 100 F. </p>
</a>
</div>
</div>
</div>
<!-- /#page-content-wrapper -->
</div>
<!-- /#wrapper -->
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Menu Toggle Script -->
<script>
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled");
});
</script>
<!-- footer -->
<style>
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color:cadetblue;
color: white;
text-align: center;
}
</style>
<div class="footer">
<p>© Copyrights Imane Bourzgui 2019</p>
</div>
</body>
</html>