-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flashcards</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap" rel="stylesheet">
<!-- App Styles -->
<link rel="stylesheet" type="text/css" href="./assets/css/app.css" />
</head>
<body>
<main id="main">
<section id="flashcard" class="flashcard">
<section class="flashcard__front">
<h2 id="concept">Draw a Flashcard</h2>
</section>
<section class="flashcard__back">
<p id="definition">Please press the "Draw Flashcard" button.</p>
<pre id="examples" class="hidden"></pre>
</section>
</section>
<section id="controls">
<button id="draw-flashcard" class="twitch">Draw</button>
<button id="skip-flashcard" disabled>Skip</button>
<button id="reset-deck" disabled>Reset</button>
</section>
</main>
<!-- Modules -->
<script src="./src/flashcard.js"></script>
<script src="./src/deck.js"></script>
<!-- App Script -->
<script src="./assets/js/app.js"></script>
</body>
</html>