-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (106 loc) · 6.68 KB
/
index.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
<!DOCTYPE html>
<html lang="eng">
<head>
<!--META TAGS-->
<meta charset="utf-8"/>
<meta http-equiv="refresh" content="30">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Nicole Huffman">
<meta name="description" content="How weather changes as you get closer to the equator">
<!--BOOTSTARP CSS-->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="SHA256:isddd+OWqZ3Enoe1v4ZrH6y04eysAqrFn+/LVAK6/5Y" crossorigin="anonymous">
<link rel="stylesheet" href="Styles.css">
<title>WeatherPy - Nicole Huffman</title>
</head>
<!--BODY-->
<!--NAVBAR-->
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<!-- Navbar content -->
<a class="navbar-brand" href="index.html">Latitude</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home<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" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="temperature.html">Max Temperature</a>
<a class="dropdown-item" href="humidity.html">Humidity</a>
<a class="dropdown-item" href="cloudiness.html">Cloudiness</a>
<a class="dropdown-item" href="windspeed.html">Wind Speed</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link " href="comparisons.html" tabindex="-1" >Comparisons</a>
</li>
<li class = "nav-item">
<a class = "nav-link " href="data.html" tabindex="-1" >Data</a>
</li>
</ul>
</div>
</nav>
<!--JUMBOTRON-->
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">Welcome To Weather Analysis</h1><br>
<p class="lead"><p>The purpose of this project was to analyze how weather changes as you get closer to the equator.
To complete the analysis, I pulled data from the OpenWeatherMap API to get a dataset on over 500 cities.</p>
After I retrieved the dataset, I used Matplotlib to plot weather vs. latitude. Factors I looked at included:</br>
<p>Temperature </p>
</p>Cloudiness </p>
</p>Wind speed </p>
</p>Humidity </p>
</p><br>
<p class ="lead">To see each visualization, you can choose each of them from the Plots dropdown button.</p>
</div>
</div>
<!--CONTAINER-->
<div class="container">
<div id="PlotCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="Resources/assets/images/Latitude_vs_max_temp.png" class="d-block w-65" alt="Max Temperature Graph">
</div>
<div class="carousel-item">
<img src="Resources/assets/images/Latitude_vs_humidity.png" class="d-block w-65" alt="Humidity Graph">
</div>
<div class="carousel-item">
<img src="Resources/assets/images/Latitude_vs_cloudiness.png" class="d-block w-65" alt="Cloudiness Graph">
</div>
<div class="carousel-item">
<img src="Resources/assets/images/Latitude_vs_wind.png" class="d-block w-65" alt="Wind Speed Graph">
</div>
</div>
<a class="carousel-control-prev" href="#PlotCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#PlotCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<footer class="footer">
<div class="container">
<a href="https://github.com/nehuffman13/Web-Design-Challenge" target="_blank">
<i class="fab fa-github fa-2x"></i>
</a>
<a href="mailto:nehuffman13@gmail.com">
<i class="fas fa-at fa-2x"></i>
</a>
<p class="text text-center">
<small>© Copyright Nicole Huffman 2020</br>
Data Science and Visualization Bootcamp</small>
</p>
</div>
</footer>
</body>
</html>