-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomparison.html
More file actions
140 lines (118 loc) · 4.61 KB
/
comparison.html
File metadata and controls
140 lines (118 loc) · 4.61 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Web Visualization Dashboard</title>
<!-- Boostrap Stylesheet -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!-- Our own CSS stylesheet -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="cloud.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<!-- <button type="button" class="btn btn-primary" href="index.html">Latitude</button> -->
<a class="navbar-brand" href="index.html">Latitude<span class="sr-only">(current)</span></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 ml-auto">
<li class="nav-item dropdown active">
<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="max_temp.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 class="dropdown-divider"></div>
<a class="dropdown-item" href="thankyou.html">Please Enjoy Clouds</a>
</div>
</li>
<li class="nav-item active">
<a class="nav-link" href="comparison.html">Comparison</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="data.html">Data</a>
</li>
</ul>
<!-- <form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form> -->
</div>
</nav>
<div id="background-wrap">
<div class="x1">
<div class="cloud"></div>
</div>
<div class="x2">
<div class="cloud"></div>
</div>
<div class="x3">
<div class="cloud"></div>
</div>
<div class="x4">
<div class="cloud"></div>
</div>
<div class="x5">
<div class="cloud"></div>
</div>
</div>
<main class="container">
<div class="col-md-12">
<section id="Comparison">
<section id="figure">
<h2 id="table_name">Comparison</h2>
<hr>
<text>**Click any plot to see an in-depth analysis </text>
<br>
<br>
<div class="row">
<div class="col-md-6">
<h3>Cloudiness</h3>
<a href="cloudiness.html">
<img src="Images\lat_cloudiness.PNG" alt="ack" class="img-fluid" >
</a>
</div>
<div class="col-md-6">
<h3>Max Temperature</h3>
<a href="max_temp.html">
<img src="Images\lat_temp.PNG" alt="ack" class="img-fluid">
</a>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h3>Humidity</h3>
<a href="humidity.html">
<img src="Images\lat_humidity.PNG" alt="ack" class="img-fluid">
</a>
</div>
<div class="col-md-6">
<h3>Wind Speed</h3>
<a href="wind_speed.html">
<img src="Images\lat_wind.PNG" alt="ack" class="img-fluid">
</a>
</div>
</div>
</section>
</section>
</div>
</main>
<!-- Javascript -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous">
</script>
</body>
</html>