-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz App! Lets Play Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="app">
<h1>Simple Quiz</h1>
<div id="select">
<h4>Pleast Select, Which Type of Quiz You Want?</h4>
<div class="but">
<a href="#">
<button id="world">World</button>
</a>
<a href="sports.html">
<button id="sports">Sports</button>
</a>
<a href="foods.html">
<button id="foods">Foods</button>
</a>
<a href="capitals.html">
<button id="capitals">Capitals</button>
</a>
</div>
</div>
<div id="quiz">
<h2 id="question">Question goes here</h2>
<div id="answer-buttons">
</div>
<button id="next-btn">Next</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>