-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomparison.html
126 lines (106 loc) · 6.59 KB
/
comparison.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
<!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">
<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="comparison.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>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">Comparisons</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-12">
<div class="card mb-3">
<div class="card-body">
<h5 class="card-title" style="text-align: center"><a href="temperature.html">Temperature Vs. Latitude</h5></a>
</div>
<img style="height: 300px; width: 100%; display: block;" src="Resources/assets/images/Latitude_vs_max_temp.png" alt="Max Temperature Graph">
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="card mb-3">
<div class="card-body">
<h5 class="card-title" style="text-align: center"><a href="humidity.html">Humidity Vs. Latitude</h5></a>
</div>
<img style="height: 300px; width: 100%; display: block;" src="Resources/assets/images/Latitude_vs_humidity.png" alt="Humidity Graph">
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-12">
<div class="card mb-3">
<div class="card-body">
<h5 class="card-title" style="text-align: center"><a href="cloudiness.html">Cloudiness Vs. Latitude</h5></a>
</div>
<img style="height: 300px; width: 100%; display: block;" src="Resources/assets/images/Latitude_vs_cloudiness.png" alt="Cloudiness Graph">
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="card mb-3">
<div class="card-body">
<h5 class="card-title" style="text-align: center"><a href="windspeed.html">Wind Vs. Latitude</h5></a>
</div>
<img style="height: 300px; width: 100%; display: block;" src="Resources/assets/images/Latitude_vs_wind.png" alt="Wind Speed Graph">
</div>
</div>
</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>