-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCloudinessPage.html
More file actions
81 lines (55 loc) · 2.57 KB
/
CloudinessPage.html
File metadata and controls
81 lines (55 loc) · 2.57 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
<!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>Cloud Cover vs Latitude</h2><br>
</div>
</div><br>
<div class="col-lg-12 text-center">
<img id="b1" src="Resources/assets/images/Fig3.png"
height=600px
/>
</div><br>
<div class="row">
<div class="col-lg-1">
</div>
<div class="col-lg-10">
<p>Another weather indicator is the amount of cloud cover, as measured by coverage of clouds at a location in percentage form.
It is well documented that tropical regions have higher annual rainfall, and that tropical areas
are closer to the Equator. However, the assumption that this would support higher cloud coverage is not indicated by the
WeatherPy data.
</p>
</div>
<div class="col-lg-1">
</div>
</div>
</div>
</body>
</html>