-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 998 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" >
<title>A flashcard game for learning Korean numbers</title>
</head>
<body>
<main class="container">
<div class="grid">
<div>
<h1 id="score">Score: 0</h1>
<h1 id="display"></h1>
</div>
</div>
<div class="grid">
<div>
<input type="text" id="guess" placeholder="Enter your guess:">
</div>
<div>
<button id="submit">Submit</button>
<button id="reset" type="reset">Reset</button>
</div>
</div>
<div class="grid">
<div>
<button id="switch-mode">Numbers</button>
<button id="switch-language">Sino-Korean</button>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>