-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathselection.html
69 lines (66 loc) · 2.68 KB
/
selection.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 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>
<header class="header">
<a href="index.html" class="active back-selection">Home ⤾</a>
</header>
<div class="wrapper">
<main class="selection-wrapper">
<img src="images/quizyo-1.png" class="selection-logo">
<div class="selection">
<h1 class="selection-menu-header"></h1>
<form id="selection-menu" class="selection-menu">
<label>
<p class="text-pad">Category:</p>
<select id="category" class="category" value="category">
<option value="">Any Category</option>
</select>
</label>
<label>
<p class="text-pad">Difficulty:</p>
<select id="difficulty" class="difficulty">
<option value = "">Any Difficulty</option>
</select>
</label>
</form>
<form id= "other-form">
<label>
<!-- <p class="text-pad">Number of Questions:</p>
<label > -->
<p id="numQuestions" class="text-pad">Number of Questions:*</p>
<select id="questionNum" class="questionNum">
<option value="" required>Select Number</option>
</select>
</label>
</form>
</div>
<div id='submitForm' class="play-game">
GAME ON!
</div>
</form>
<audio id="music">
<source src="sfx/intro-Oman.mp3" type="audio/mp3">
</audio>
<audio id="click">
<source src="sfx/click.ogg" type="audio/ogg">
</audio>
<img id="toggle" class="play" onclick="toggle()" src="images/pause.png">
</main>
</div>
</body>
<!-- <footer class="footer">
<ul class="links">
</ul>
</footer> -->
<script src="js/get.js"></script>
<script src="js/index.js"></script>
</html>