-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) · 946 Bytes
/
index.html
File metadata and controls
30 lines (26 loc) · 946 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Individual Assignment 3</title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<h1 class="responsive-svg-container" style="text-align:center">
Individual Assignment 3: D3 Implementation
</h1>
<!-- SVG -->
<div id="dataviz" class="responsive-svg-container"></div>
<!-- Select year -->
<div id="controls" style="display: flex; justify-content: center; align-items: center; margin-top: 20px;">
<button id="btn-prev" style="padding: 5px 15px;"><</button>
<span id="year-display" style="font-weight: bold; font-size: 20px; margin: 0 15px;">2022</span>
<button id="btn-next" style="padding: 5px 15px;">></button>
</div>
<!-- Tooltip -->
<div id="tooltip" class="tooltip"></div>
<script src="./d3.js"></script>
<script src="./script.js"></script>
</body>
</html>