-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (50 loc) · 1.81 KB
/
index.html
File metadata and controls
55 lines (50 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://unpkg.com/cal-heatmap/dist/cal-heatmap.min.js"></script>
<link
rel="stylesheet"
href="https://unpkg.com/cal-heatmap/dist/cal-heatmap.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Englebert&family=Comfortaa"
/>
<link rel="stylesheet" href="./style.css" />
<script src="https://unpkg.com/cal-heatmap/dist/plugins/Legend.min.js"></script>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://unpkg.com/cal-heatmap/dist/plugins/Tooltip.min.js"></script>
<script src="https://unpkg.com/cal-heatmap/dist/plugins/CalendarLabel.min.js"></script>
<title>24k Tracks</title>
</head>
<body>
<div>
<button id="lightDarkToggleButton">💡 light / dark mode</button>
</div>
<p class="track-category-gym-text">gym 💪🏽</p>
<div id="cal-gym-heatmap"></div>
<br />
<div id="gym-legend" style="float: left"></div>
<script src="./script_gym.js"></script>
<br /><br /><br />
<p class="track-category-spoiler-text">sparkle ✨</p>
<div id="cal-spoiler-heatmap"></div>
<script src="./script_spoiler.js"></script>
<br /><br />
<p class="track-category-korean-text">korean 🌸</p>
<div id="cal-korean-heatmap"></div>
<br />
<div id="korean-legend" style="float: left"></div>
<script src="./script_korean.js"></script>
<br /><br /><br />
<p class="track-category-study-text">study ✏️</p>
<div id="cal-study-heatmap"></div>
<br />
<div id="study-legend" style="float: left"></div>
<script src="./script_study.js"></script>
<br /><br /><br />
<script src="./script_dark.js"></script>
</body>
</html>