-
Notifications
You must be signed in to change notification settings - Fork 973
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (37 loc) · 1.35 KB
/
Copy pathindex.html
File metadata and controls
41 lines (37 loc) · 1.35 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
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Fontawesome CSS CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css"/>
<link href="styles.css" rel="stylesheet">
<script defer src="script.js"></script>
<title>Quiz Game</title>
</head>
<body>
<!-- Theme button -->
<div class="theme-button">
<button id="light-theme-btn"><i class="fas fa-sun fa-2x"></i></button>
<button id="dark-theme-btn"><i class="fas fa-moon fa-2x"></i></button>
</div>
<div class="container">
<div id="question-container" class="hide">
<div id="question">Question</div>
<div id="answer-buttons" class="btn-grid">
<button class="btn">Option 1</button>
<button class="btn">Option 2</button>
<button class="btn">Option 3</button>
<button class="btn">Option 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>
<!-- Fontawesome JS CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/js/all.min.js"></script>
</body>
</html>