-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbar-plot.html
More file actions
75 lines (56 loc) · 2.46 KB
/
bar-plot.html
File metadata and controls
75 lines (56 loc) · 2.46 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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>VI Project - Visualize Covid Data</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/covid.ico" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body class="d-flex flex-column min-vh-100">
<!-- Responsive navbar-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container px-5">
<a class="navbar-brand" href="index.html"> <img src="assets/covid.ico" width="25" height="25" alt=""> VI
Project - Visualize Covid Data</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-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 ms-auto mb-2 mb-lg-0">
<li class="nav-item"><a class="nav-link" aria-current="" href="index.html">Map Plot</a></li>
<li class="nav-item"><a class="nav-link" aria-current="" href="line-plot.html">Line Plot</a></li>
<li class="nav-item"><a class="nav-link active" aria-current="" href="bar-plot.html">Bar Plot</a>
</li>
<li class="nav-item"><a class="nav-link" aria-current="" href="about.html">About</a></li>
</ul>
</div>
</div>
</nav>
<!-- Page Content-->
<div class="container-fluid my-5">
<h1>Bar Plot</h1>
<!-- Create a svg where the graph will take place -->
<svg id="svg-bar-plot"></svg>
</div>
<!-- Footer-->
<div class="wrapper flex-grow-1"></div>
<footer class="py-5 bg-dark">
<div class="container px-4 px-lg-5">
<p class="m-0 text-center text-white">Copyright © VI Project - Visualize Covid Data 2021/2022</p>
</div>
</footer>
<!--jQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!--Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- D3js -->
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src="dbp.js"></script>
</body>
</html>