-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
89 lines (68 loc) · 1.99 KB
/
quiz.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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">
<title>Vocab Practice</title>
<!-- Custom Styles -->
<link rel="stylesheet" href="styles/quiz.css">
<link rel="stylesheet" href="styles/common.css">
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<link rel="shortcut icon" sizes="192x192" href="assets/image.png" type="image/x-icon">
<meta property="og:image" content="assets/image.png" />
<link rel="apple-touch-icon" href="assets/image.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<header>
<div class="nav-open">
<i class="material-icons">dehaze</i>
</div>
<div class="counts">
<span class="count">
<span class="got-right">0</span>
/
<span class="total-questions-solved">0</span>
</span>
<span class="accuracy">0%</span>
</div>
</header>
<div class="timer">
<div class="timer_cover"></div>
</div>
<div class="loader_container">
<div class="loader"></div>
</div>
<div class="quiz">
<h3 class="question"></h3>
<div class="options">
</div>
<div class="action">
<button disabled class="next btn">Next</button>
</div>
</div>
<div class="helper">
<div class="word_container synonyms">
<span class="title">Some common synonyms:</span>
<hr>
<span class="words"></span>
</div>
<div class="word_container antonyms">
<span class="title">Some common antonyms</span>
<hr>
<span class="words"></span>
</div>
</div>
<div class="backdrop">
<nav class="">
<div class="nav-close">
<i class="material-icons">close</i>
</div>
<div class="settings">
</div>
</nav>
</div>
<script type="module" src="scripts/quiz.js"></script>
</body>
</html>