-
Notifications
You must be signed in to change notification settings - Fork 0
/
simon.html
25 lines (25 loc) · 874 Bytes
/
simon.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</title>
<link rel="stylesheet" href="simon.css">
</head>
<body>
<h1>Simon Says Game</h1>
<h3 class="maxscore">Maxscore: 0</h3>
<h2>Press any key to start</h2>
<div class="btn-container">
<div class="line-one">
<div class="btn red" id="red" type="button"></div> <!--by doing this we can apply clickable properties on it-->
<div class="btn green" id="green" type="button"></div>
</div>
<div class="line-two">
<div class="btn blue" id="blue" type="button"></div>
<div class="btn yellow" id="yellow" type="button"></div>
</div>
</div>
<script src="simon.js"></script>
</body>
</html>