-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (29 loc) · 1.18 KB
/
Copy pathindex.html
File metadata and controls
37 lines (29 loc) · 1.18 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="card">
<h1>Quiz App <br>Powered by <a href="https://opentdb.com/">Open Trivia Database API*</a></h1>
<p>Choose which quiz you want to do[10 questions per category]</p>
<div class="buttonParent">
<button id="allCategory">All Categories</button>
<button id="generalKnowledge">General Knowledge</button>
<button id="scienceAndNature">Science & Nature</button>
<button id="sports">Sports</button>
<button id="art">Art</button>
<button id="geography">Geography</button>
<button id="history">History</button>
<button id="celebrities">Celebrities</button>
<button id="entertainmentVideoGames">Entertainment: Video Games</button>
</div>
<p>Trivia questions provided by Open Trivia Database (CC BY 4.0).</p>
</div>
<!-- <a href="quiz-Sports.html" >Sports</a> -->
</body>
<script src="script.js"></script>
</html>