-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.62 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
38
39
40
41
42
<!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" />
<link rel="stylesheet" href="style.css" />
<script src="app.js" defer></script>
<title>Simon by Corey</title>
</head>
<body>
<nav class="animate glow delay-1">
<p>Simon by Corey</p>
<p>Nov 2022</p>
</nav>
<div class="game-screen">
<div class="game-board">
<div class="board-section animate glow delay-2" id="computer-side">
<div class="tile blue" id="cpu-first-tile"></div>
<div class="tile red" id="cpu-second-tile"></div>
<div class="tile green" id="cpu-third-tile"></div>
<div class="tile orange" id="cpu-fourth-tile"></div>
</div>
<div class="board-section animate glow delay-3" id="status-bar">
<p><span id="status-text">Click to play</span></p>
</div>
<div class="board-section animate glow delay-2" id="player-side">
<div class="tile blue" id="player-first-tile"></div>
<div class="tile red" id="player-second-tile"></div>
<div class="tile green" id="player-third-tile"></div>
<div class="tile orange" id="player-fourth-tile"></div>
</div>
</div>
</div>
<div class="footer-bar animate glow delay-1">
<p>Thanks for playing!</p>
</div>
<audio src="right-move.mp3" id="audio-right-move"></audio>
<audio src="wrong-move.mp3" id="audio-wrong-move"></audio>
<audio src="win-game.mp3" id="audio-win-game"></audio>
</body>
</html>