-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (52 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Max Sandoval Quiz</title>
<meta name="description" content="Quiz" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./Resolved/style.css" />
<!-- START QUESTION CONTAINER -->
<div class="question-window">
<header>
<div><h1>Coronavirus Quiz</h1>
<p> Click on the correct answer.</p></div>
<div id="timer"></div>
<div id="timer-txt"></div>
<div id="timer-sec"></div>
<div id="score"></div>
<hr id="divider">
<!-- Question #1 -->
<div id="question-title"></div>
<div id="question-text"></div>
<div id="answer1"></div>
<!-- Question #2 -->
<div id="question-title"></div>
<div id="question-text"></div>
<div id="answer2"></div>
<!-- Question #3 -->
<div id="question-title"></div>
<div id="question-text"></div>
<div id="answer3"></div>
<!-- Question #4 -->
<div id="question-title"></div>
<div id="question-text"></div>
<div id="answer4"></div>
</div>
<div class="timer-line"></div>
<button id="start">Start</button>
</header>
<section>
<div class="end-page">
<div id="timer-txt"></div>
<div id="final-score"></div>
</div>
</section>
<section class="ScorePage">
<div id="final-score"></div>
</section>
<script src="./Resolved/script.js"></script>
</main>
</body>
</html>