-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<main class="flex flex-col gap-5 my-10 max-w-[500px] mx-auto">
<div class="flex justify-between text-xl font-semibold">
<h1 id="title" class="another-class">Flashcard app</h1>
<h1 id="score-card" class="text-md">Selected: 0 </h1>
</div>
<div id="card-container" class="space-y-3"></div>
<div id="clicked" class="space-y-3"></div>
<button
onclick="handleStart()"
id="start-button"
class="px-2 py-5 bg-green-500 text-2xl rounded-md font-bold text-white"
>
Start
</button>
<button
onclick="handleReset()"
id="reset-button"
class="px-2 py-5 bg-red-500 text-2xl rounded-md font-bold text-white hidden"
>
Reset
</button>
<button
onclick="handleDone()"
id="done-button"
class="px-2 py-5 bg-blue-500 text-2xl rounded-md font-bold text-white hidden"
>
Done
</button>
</main>
<script src="./main.js"></script>
</body>
</html>