-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.03 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="stylesheet.css">
<script defer src="script.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Are You a Gamer?</title>
</head>
<body>
<div class="container">
<div id="question-container" class="hide">
<div id="main">90's Gamer Trivia</div>
<div>Question:</div>
<div id="question"></div>
<div id="answer-button" class="answer-btns">
<button class="button">Answer 1</button>
<button class="button">Answer 2</button>
<button class="button">Answer 3</button>
<button class="button">Answer 4</button>
</div>
</div>
<div class="controls">
<button id="start-button" class="start-button-btn">Press Here to Start</button>
<button id="next-button" class="next-button-btn btn hide">Next</button>
</div>
</div>
</body>
</html>