-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simon Play Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- <h1>Todo App</h1>
<input placeholder="enter your task">
<button>Add Task</button>
<ul>
<li>Eat <button class="delete"> delete </button></li>
<li>Sleep <button class="delete"> delete </button></li>
</ul> -->
<!-- Todo app -->
<div class="container">
<h1>Simon Says Game </h1>
<p > <b>High Score : 0</b></p>
<button type="button" >start</button>
<h2>Press any key to start game</h2>
</div>
<div class="btn-container">
<div class="line1">
<div class="btn yellow" type="button" id="yellow">1</div>
<div class="btn red" type="button" id="red">2</div>
</div>
<div class="line2">
<div class="btn purpel" type="button" id="purpel">3</div>
<div class="btn green" type="button" id="green">4</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>