-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
62 lines (53 loc) · 1.88 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!--
Note: You should not have to modify this file. (You are allowed to, but
not expected to.)
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Flashcards</title>
<link href="https://fonts.googleapis.com/css?family=Nunito|Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="flashcard-style.css"/>
<link rel="icon" type="image/png" href="images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16" />
<script src="https://code.jquery.com/pep/0.4.1/pep.js"></script>
<script src="constants.js" defer></script>
<script src="flashcard.js" defer></script>
<script src="flashcard-screen.js" defer></script>
<script src="menu-screen.js" defer></script>
<script src="results-screen.js" defer></script>
<script src="app.js" defer></script>
<script src="main.js" defer></script>
</head>
<body>
<div id="menu">
<div class="contents">
<header>
<h1>FLASHCARDS</h1>
<h2>Choose a card deck:</h2>
</header>
<div id="choices"></div>
</div>
</div>
<div id="main" class="inactive">
<div id="flashcard-container" touch-action="none"></div>
<div class="status">
<div><span class="correct"></span> right</div>
<div><span class="incorrect"></span> wrong</div>
</div>
</div>
<div id="results" class="inactive">
<h1>Results</h1>
<div><span class="percent"></span>%</div>
<div><span class="correct"></span> right</div>
<div><span class="incorrect"></span> wrong</div>
<div class="menu-buttons">
<button class="continue"></button>
<button class="to-menu">Back to menu</button>
</div>
</div>
</body>
</html>