-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquiz.html
61 lines (57 loc) · 2.34 KB
/
quiz.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
<!DOCTYPE html>
<html>
<head>
<title>Project OOW Endangered Animals</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="quiz.css">
<script defer src="quiz.js"></script>
</head>
<body>
<header> <!--this a good pratice to have header, main and footer so it becomes more readeable.-->
<div class="topnav">
<div class="wrapper">
<a href="homepage.html">Home</a>
<div class="subnav">
<button class="subnavbtn-active">Games</i></button>
<div class="subnav-content">
<a href="gamez.html">gazelle run</a>
<a href="gazelle jigsaw puzzle.html">jigsaw puzzle</a>
<a>gazelle quiz</a>
</div>
</div>
<a href="blogpage.html">BlogPage</a>
<a href="gallery.html">Gallery</a>
<a href="description.html">About</a>
</div>
</div>
<div class="wrapper">
<h1 class="h1-style">Gazelle Quiz</h1>
</div>
</header>
<div id="main">
<div class="wrapper">
<div class="container">
<div id="question-container" class="hide">
<div id="question">Question</div>
<div id="answer-buttons" class="btn-grid">
<button class="btn">Answer 1</button>
<button class="btn">Answer 2</button>
<button class="btn">Answer 3</button>
<button class="btn">Answer 4</button>
</div>
</div>
<div class="controls">
<button id="start-btn" class="start-btn btn">Start</button>
<button id="next-btn" class="next-btn btn hide">Next</button>
</div>
</div>
</div>
<div>
<footer>
</footer>
</body>
</html>
</footer>
</body>
</html>