-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brain Blitz</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div id="leaderboard-section" class="hidden">
<h2>Leaderboard</h2>
<div id="leaderboard"></div>
</div>
<div id="main-section">
<h1>Brain Blitz</h1>
<div id="login-section">
<input type="text" id="username" placeholder="Enter username">
<input type="password" id="password" placeholder="Enter password">
<button onclick="startGame()">Start Game</button>
</div>
<div id="game-section" class="hidden">
<div id="score">Score: 0/40</div>
<div id="question-container">
<h2 id="question"></h2>
<div id="choices"></div>
</div>
<div id="feedback"></div>
<div id="final-score"></div>
</div>
</div>
<div id="question-list-container" class="hidden"></div>
</div>
<script src="script.js"></script>
</body>
</html>