-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTemperaturePage.html
More file actions
76 lines (55 loc) · 2.65 KB
/
TemperaturePage.html
File metadata and controls
76 lines (55 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<div class="container">
<nav class="navbar-custom navbar-expand-sm">
<a id="aa1" class="navbar-brand" href="#">WeatherPy Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link" href="index.html">WeatherPyHome</a>
<a class="nav-item nav-link" href="TemperaturePage.html">Temperature</a>
<a class="nav-item nav-link" href="HumidityPage.html">Humidity</a>
<a class="nav-item nav-link" href="CloudinessPage.html">Cloud Cover</a>
<a class="nav-item nav-link" href="WindSpeedPage.html">Wind Speed</a>
<a class="nav-item nav-link" href="CityData.html">City Data</a>
</div>
</div>
</nav>
</div>
</div>
</div><br>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Temperature vs Latitude</h2><br>
</div>
</div><br>
<div class="col-lg-12 text-center">
<img id="b1" src="Resources/assets/images/Fig1.png"
height=600px
/>
</div><br>
<div class="row">
<div class="col-lg-1">
</div>
<div class="col-lg-10">
<p>It is often noted that temperatures are higher closer to the equator, this can be noted in most cases in the data with a few outliers.
There is quite an even spread of temperatures from -20 to 40 latitude which shows that there is varience to this widely accepted rule.
Arid areas typically will report much higher temperatures in a wider band of latitude while low lying and coast regions report a much wider
temperature range. Our data was collected on the 03/05/22.
</p>
</div>
<div class="col-lg-1">
</div>
</div>
</div>
</body>
</html>