- Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
30 lines (30 loc) · 999 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 999 Bytes
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
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>Quiz</title>
<linkrel="stylesheet" href="style.css">
</head>
<body>
<divid="container">
<divid="start">Start Quiz!</div>
<divid="quiz" style="display: none">
<divid="question"></div>
<divid="qImg"></div>
<divid="choices">
<divclass="choice" id="A" onclick="checkAnswer('A')"></div>
<divclass="choice" id="B" onclick="checkAnswer('B')"></div>
<divclass="choice" id="C" onclick="checkAnswer('C')"></div>
</div>
<divid="timer">
<divid="counter"></div>
<divid="btimeGauge"></div>
<divid="timeGauge"></div>
</div>
<divid="progress"></div>
</div>
<divid="scoreContainer" style="display: none"></div>
</div>
<scriptsrc="quiz.js"></script>
</body>
</html>