forked from Project-Islem-Mohamed/Quiz-Game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuiz_game_page_index.html
39 lines (31 loc) · 1.09 KB
/
Quiz_game_page_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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Quiz Game</title>
<!--connecting css file with html-->
<link href="Quiz_game.css" rel="stylesheet">
<!--connecting js file with html-->
<script src="Quiz_game.js"></script>
</head>
<body>
<h1 >Choose a topic to test your General knowledge</h1>
<div class="a">
<div class="a1">
<p class="a2">Geographic</p>
<input class="bt" id="button1" type="button" value="Start" onclick="location.href='Quiz_game1.html';">
</div>
<div class="a1">
<p class="a2">Sport</p>
<input class="bt" id="button2" type="button" value="Start" onclick="location.href='Quiz_game2.html';">
</div>
<div class="a1">
<p class="a2">Music</p>
<input class="bt" id="button3" type="button" value="Start" onclick="location.href='Quiz_game3.html';">
</div>
</div>
<footer><b>
Our quiz games put the fun into learning. Your knowledge will be tested regarding a variety of subjects, including geography, music, and sports.</b></footer>
</body>
</html>