-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (69 loc) · 2.24 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="Description" content="Enter your description here" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/css/style.css" />
<title>Music Quiz</title>
</head>
<header
class="jumbotron jumbotron-fluid bg-dark text-light display-4 text-center"
>
<h1>Musical Knowledge Quiz</h1>
</header>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.1/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/js/bootstrap.min.js"></script>
<div class="row justify-content-center">
<div id="timer" class="card">
<div class="column">Time: <span class="timer-count">100</span></div>
</div>
<div id="score" class="card">
<div class="column">
Your score is:
<span class="userScore">0</span>
</div>
</div>
</div>
<br />
<br />
<div
class="container-fluid text-center justify-content-center text-dark col-9"
>
<div id="question-container">
<div id="question">
Press "Begin" when you are ready to start your quiz...
</div>
<hr />
<div
id="answer-buttons"
class="row row-cols-2 justify-content-center"
></div>
<br />
<br />
<div class="row justify-content-around">
<button id="startbtn" class="col-2 bg-secondary text-light">
Begin
</button>
</div>
<div class="row"></div>
</div>
</div>
<script src="assets/js/script.js"></script>
</body>
</html>