-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (35 loc) · 1.03 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Visualization Web App</title>
<link rel="stylesheet" href="src/css/styles.css" />
<script src="https://d3js.org/d3.v7.min.js"></script>
</head>
<body>
<div class="app-container">
<aside class="sidebar-section">
<section class="filter">
<h2>Filter</h2>
</section>
<sec/section class="about">
<h2>About</h2>
</section>
</aside>
<div class="visualization-section">
<section id="map" class="map-container">
<h2>Map</h2>
</section>
<section class="chart-container">
<h2>Chart</h2>
</section>
<section class="timeline-container">
<h2>Timeline</h2>
</section>
</div>
</div>
<script src="src/js/map.js"></script>
<script src="src/js/utilities.js"></script>
</body>
</html>