-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiztime.html
67 lines (64 loc) · 1.86 KB
/
quiztime.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Quiz Time</title>
<link rel="stylesheet" href="quiztime.css" />
<link
href="https://fonts.googleapis.com/css2?family=Allerta+Stencil&family=Lobster&family=Roboto:wght@100&display=swap"
rel="stylesheet"
/>
<script src="app.js"></script>
<script src="text.js"></script>
<script
type="text/javascript"
src="http://code.jquery.com/jquery-latest.min.js"
></script>
</head>
<body>
<script>
$(document).ready(function () {
$("#btn0").hide();
$("#btn1").hide();
$("#btn2").hide();
$("#btn3").hide();
$("#btn5").hide();
$("#btn6").hide();
$("#scorenumber").hide();
$("#scoretext").hide();
});
</script>
<div class="grid">
<div id="quiz">
<h1>Quiztime</h1>
<hr style="margin-top: 10px" />
<h2 id="zaehler"></h2>
<p id="text"></p>
<center>
<p id="scorenumber"></p>
<p id="scoretext"></p>
</center>
<div class="buttons">
<button id="btn0" onclick="Check(this.id)">
<span id="choice0"></span></button
><br />
<button id="btn1" onclick="Check(this.id)">
<span id="choice1"></span></button
><br />
<button id="btn2" onclick="Check(this.id)">
<span id="choice2"></span></button
><br />
<button id="btn3" onclick="Check(this.id)">
<span id="choice3"></span></button
><br /><br />
<button id="btn4" onclick="Start()">Start</button>
<button id="btn5" onclick="Weiter()">Next</button>
<button id="btn6" onClick="Start()">Again</button>
</div>
<footer>
<p id="progress"></p>
</footer>
</div>
</div>
</body>
</html>