forked from JoshuaNwaizu/quiz-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html-quiz.html
85 lines (77 loc) · 3.35 KB
/
html-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== REMIX ICONS ===============-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="html quiz/html-quiz.css">
<title>Html Quiz</title>
</head>
<body>
<main class="main section" id="main">
<header class="header" id="header">
<nav class="nav container">
<div class="nav__logo">
<h1>FE-quiz</h1>
</div>
<div class="toggle__icons container">
<i class="ri-sun-line"></i>
<div class="toggle__box">
<div class="toggle__circle"></div>
</div>
<i class="ri-moon-line"></i>
</div>
</nav>
</header>
<section class="section container grid">
<div class="the__game-container section grid hidden">
<div class="progress-and-options">
<div class="html__container container ">
<div class="score__questions">
<p class="html__question-counter"></p>
<p class="html__score">Points: 0</p>
</div>
<h1 class="html__title" id="html-question">A portrait that comically exaggerates a person's
physical
traits is called a what?</h1>
</div>
<div class="progress__progress-questions">
<div class="html__progress">
<div class="html__progress-full"></div>
</div>
</div>
</div>
<div class="html__options">
<div class="html__options-container">
<div class="html__options-list">
<p class="html__choice-prefix">A</p>
<p class="html__choice-text" data-number="1"></p>
</div>
<div class="html__options-list">
<p class="html__choice-prefix">B</p>
<p class="html__choice-text" data-number="2"></p>
</div>
<div class="html__options-list">
<p class="html__choice-prefix">C</p>
<p class="html__choice-text" data-number="3"></p>
</div>
<div class="html__options-list">
<p class="html__choice-prefix">D</p>
<p class="html__choice-text" data-number="4"></p>
</div>
</div>
<div class="button">
<button class="btn">
Back to menu
</button>
<button class="skip">Skip to Score </button>
</div>
</div>
</div>
</section>
</main>
<script type="module" src="html-quiz.js"></script>
</body>
</html>