-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (27 loc) · 850 Bytes
/
index.html
File metadata and controls
34 lines (27 loc) · 850 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
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BubbleTea 2.0</title>
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="titlebar">
<h1 id="filename">BubbleTea 2.0</h1>
<button id="upload-button" class="toolbutton">
<img class="icon icon-download" src="assets/upload.png" alt="upload" />
<input type="file" id="file-selector" class="toolbutton" accept=".json" />
</button>
</div>
<div id="chart-container"></div>
<div id="tooltip" class="tooltip"></div>
<div id="sidebar">
<div class="resizer"></div>
<div class="menu" id="info-panel"></div>
</div>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script type="module" src="main.js"></script>
</body>
</html>