-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 982 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simon Game</title>
<link rel="stylesheet" href="./src/style.css" />
</head>
<body>
<h1>Level <span id="scoreDisplay">0</span></h1>
<div class="game-container">
<div class="tile green" data-tile="green"></div>
<div class="tile red" data-tile="red"></div>
<div class="tile yellow" data-tile="yellow"></div>
<div class="tile blue" data-tile="blue"></div>
</div>
<div class="controls">
<button id="startBtn">Start Game</button>
</div>
<!-- Game Over Modal -->
<div class="modal" id="gameOverModal">
<div class="modal-content">
<h2>Game Over!</h2>
<p>Level reached: <span id="finalScore">0</span></p>
<button id="playAgainBtn">Play Again</button>
</div>
</div>
<script src="./src/main.js"></script>
</body>
</html>