forked from SouravVerma-art/Simon-Says-Game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (23 loc) · 648 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (23 loc) · 648 Bytes
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
<!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="style.css">
</head>
<body>
<div class="cntr">
<h1>Simon Game</h1>
<h2 class="h2txt">Press any key to start</h2>
<h3 class="score">High Score: 0</h3>
<div class="btn-cntnr">
<div class="box" id="yellow"></div>
<div class="box" id="red"></div>
<div class="box" id="purple"></div>
<div class="box" id="green"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>