-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.5 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kin Cunico's Kanji list</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<div id="app-container">
<header>
<h1>Kanji Flashcards</h1>
</header>
<main>
<!-- Kanji Animation Container -->
<div id="kanji-animation-container">
<!-- Kanji animation injected here -->
<div id="app"></div>
</div>
<!-- Popup for Kanji Table -->
<div id="pop-up" class="hidden" aria-hidden="true">
<div id="kanji-table">
<h2>Kanji Table</h2>
<ul id="kanji-list"></ul>
<button id="close-popup" aria-label="Close Kanji Table">Close</button>
</div>
</div>
<!-- Controls -->
<div id="controls">
<button id="choose-btn" aria-label="Open Kanji Table">Table</button>
<button id="prev-btn" aria-label="Previous Kanji">Previous</button>
<button id="replay-btn" aria-label="Replay Animation">Replay</button>
<button id="next-btn" aria-label="Next Kanji">Next</button>
</div>
</main>
<footer>
<p>Kin Cunico's Kanji list</p>
</footer>
</div>
<script type="module" src="scripts/main.js"></script>
</body>
</html>