-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (59 loc) · 2.21 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!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>Pop-Quiz</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="FrontPage ">
<div class="FP_contentContainer text">
<div>
<h1 class="FP_h1 heading">Quiz</h1>
</div>
<div>
<p class="FP_p">Are you ready to test your knowledge about history, science, chemistry and more?<br> Your Score will be tracked and revealed at the end.</p>
<h2 class="FP_h2">Good Luck!</h2>
</div>
<div class="FP_btnWrapper">
<button class="FP_btn">Start Quiz</button>
</div>
</div>
</main>
<main class="QuizPage hide">
<div class="QP_container">
<div>
<p class="QP_q heading">Which planet is known as the 'Red Planet'?</p>
</div>
<div class="QP_ansContainer text">
<button class="QP_aBtn">Venus</button>
<button class="QP_aBtn">Mars</button>
<button class="QP_aBtn">Jupiter</button>
<button class="QP_aBtn">Saturn</button>
</div>
</div>
</main>
<main class="ResPage hide">
<div class="RP_container text">
<div class="RP_results">
<h1 class="RP_h1 heading">Results</h1>
<div class="RP_scoreBig">
<p class="RP_scoreText">83%</p>
</div>
<p class="RP_scoreLabel">10/12 correct answers</p>
</div>
<div class="RP_retake">
<div class="RP_retakeContent">
<h2 class="RP_h2 heading">Retake this quiz</h2>
<div class="RP_retakeBtnWrapper">
<button class="RP_retakeBtn">Back to Start</button>
</div>
</div>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>