-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 856 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simon Says Game:Memory Booster</title>
<link rel="icon" href="./Screenshot 2024-06-05 at 12.24.40 AM.png">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1>Simon Game</h1>
<h2>Press any key to start the game</h2>
<div class="box-container">
<div class="line-one">
<div class="btn button-1" id="button-1"><p>0</p></div>
<div class="btn button-3" id="button-3"><p>2</p></div>
</div>
<div class="line-two">
<div class="btn button-2" id="button-2"><p>1</p></div>
<div class="btn button-4" id="button-4"><p>3</p></div>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>