-
Notifications
You must be signed in to change notification settings - Fork 7
/
gamescreen.html
69 lines (56 loc) · 2.44 KB
/
gamescreen.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Yo'Self</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@500&display=swap" rel="stylesheet">
<link rel="icon" href="images/q.png">
<link rel="stylesheet" href="css/index.css">
</head>
<body class="gamescreen-body">
<header class="header">
<a class="active" href="selection.html">Back to Selection ⤾</a>
</header>
<div class="gamescreen-wrapper" id="wrapper">
<p>
<img src="images/quizyo-1.png" class="gamescreen-logo">
</p>
<div id="counter">
<div id="counterSpan"></div>
</div>
<div class="question" id="question">
<span class="span">Question goes here?</span>
</div>
<span class="result off" id="result">
<span>INCORRECT!</span>
</span>
<div class="answers" id="answers">
<p class="first-p"><button type="button" class="btn answer" id="btn">Answer 1</button></p>
<p><button type="button" class="btn answer" id="btn">Answer 2</button></p>
<p><button type="button" class="btn answer" id="btn">Answer 3</button></p>
<p><button type="button" class="btn answer" id="btn">Answer 4</button></p>
</div>
<div class="submit" id="submit">
<button type="button" class="btn-submit" id="btnSubmit">CHECK</button>
</div>
<div class="next" id="next">
<p><button type="button" class="btn-next" id="btnNext">NEXT</button></p>
</div>
</div>
<audio id="music">
<source src="sfx/long-Oman.mp3" type="audio/mp3">
</audio>
<audio id="click">
<source src="sfx/click.ogg" type="audio/mp3">
</audio>
<audio id="applause">
<source src="sfx/applause.mp3" type="audio/mp3">
</audio>
<audio id="boos">
<source src="sfx/crowdboo.mp3" type="audio/mp3">
</audio>
<script src="js/question.js"></script>
</body>
</html>