-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomparison.html
122 lines (96 loc) · 5.81 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<style>
img{ width: auto;
height: auto;
max-width: 100%;
max-height: 100%;}
</style>
<meta charset="UTF-8">
<title>comparison</title>
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="first_line_color">
<div class="row">
<!-- <div class="form-inline"> -->
<div class="col-md-6">
<div class="first_line" >
<div class="div1"><h1>Latitude</h1> </div>
</div>
</div>
<div class="col-md-2">
<!-- <div class="btn-group" role="group" aria-label="Basic example"> -->
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
plot
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<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="wind-speed.html">Wind-speed</a>
</div>
</div>
</div>
<div class="col-md-2">
<form>
<input class="MyButton1" type="button" value="Comparison" onclick="window.location.href='comparison.html'" />
</form>
</div>
<div class="col-md-2">
<form>
<input class="MyButton2" type="button" value="data" onclick="window.location.href='weather_df.html'" />
</form>
<!-- <button type="button" href="data.html"> <a class="dropdown-item" href="https://www.youtube.com">Data</a> </button> -->
</div>
</div>
<!-- </div> -->
</div>
<br>
<!-- <div class="Col_container"> -->
<main class="comparison_container">
<header>
<h1>Comparison: Lattitude vs. X</h1>
</header>
<p>click any plot to get an in-depth analysis</p>
<!--Normally these medium columns go full wide on small screen sizes-->
<div class="row">
<div class="col-sm-6 col-md-6">
<a href="Temperature.html"><figure class="comparison_figure" style="margin:20px;margin-left: 20%">
<figcaption style="text-align: center;font-size: 150%">vs. Max Temperature</figcaption>
<img src="./Resources/latitude_Max-Temperature.png" alt="latitude_Max-Temperature" >
</figure></a>
</div>
<div class="col-sm-6 col-md-6">
<a href="Temperature.html"><figure class="comparison_figure" style="margin:20px;margin-left: 20%">
<figcaption style="text-align: center;font-size: 150%">vs. Cloudiness</figcaption>
<img src="./Resources/latitude_Cloudiness(mph).png" alt="latitude_Cloudiness" >
</figure></a>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-6">
<a href="Temperature.html"><figure class="comparison_figure" style="margin-bottom:30%;margin-left: 20%">
<figcaption style="text-align: center;font-size: 150%">vs. Humidity</figcaption>
<img src="./Resources/latitude_humidity.png" alt="latitude_humidity" >
</figure></a>
</div>
<div class="col-sm-6 col-md-6">
<a href="Temperature.html"><figure class="comparison_figure" style="margin-bottom:30%;margin-left: 20%;">
<figcaption style="text-align: center;font-size: 150%">vs. Wind-speed</figcaption>
<img src="./Resources/latitude_wind-speed(mph).png" alt="latitude_wind-speed" >
</figure></a>
</div>
</div>
</main>
<!-- </div> -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
</html>