-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion.html
69 lines (64 loc) · 2.48 KB
/
question.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Question</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='./assets/css/question_style.css'>
<link rel="stylesheet" href="assets/css/responsive/nav_responsive.css">
<link rel="stylesheet" href="assets/css/responsive/question_responsive.css">
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<ul class="quizes">
<li>
<a href="./index.html">
<img src="assets/img/navbar_icons/home.png" alt="Home">
</a>
</li>
<li>
<a href="./quiz_form.html">
<img src="assets/img/navbar_icons/quiz.png" alt="Quiz">
</a>
</li>
<li>
<a href="#">
<img src="assets/img/navbar_icons/random.png" alt="Random">
</a>
</li>
</ul>
<ul class="contact">
<li>
<a href="./dev_page.html">
<img src="assets/img/navbar_icons/dev.png" alt="Developers">
</a>
</li>
<li>
<a href="./credits_page.html">
<img src="assets/img/navbar_icons/credits.png" alt="Credits">
</a>
</li>
</ul>
</nav>
<main>
<section class="top">
<p class="question_type"></p>
<p class="count"><span id="curr_q"></span></p>
<h2 class="question"></h2>
</section>
<section class="middle">
<h1 class="time" id="tmr"></h1>
<div class="timer" id="t_bar"></div>
<ul class="answers" id="list" style="list-style: none;">
</ul>
</section>
<div class="bottom">
<button class="next" disabled>Next</button>
</div>
</main>
<script src='./assets/js/question.js'></script>
</body>
</html>