-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgamescreen.html
More file actions
83 lines (78 loc) · 2.29 KB
/
gamescreen.html
File metadata and controls
83 lines (78 loc) · 2.29 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gecomtech</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/CpeDev.png" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/screen.css" />
</head>
<body class="gamescreen-body">
<header class="header">
<a class="active" href="selection.html"
>Back to Selection <img class="handarrow" src="images/handarrow.png"
/></a>
</header>
<div class="gamescreen-wrapper" id="wrapper">
<p>
<img src="images/title.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>You're answers Wrong!</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>
<section class="copyright">
<p>
<a href="https://github.com/cpe-prog"> © gri@n02 </a>
</p>
</section>
</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>