-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimonGame.html
28 lines (24 loc) · 888 Bytes
/
simonGame.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
<!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="simonGame.css">
</head>
<body>
<h1>Simon Game</h1>
<h2>Press any key to start game</h2>
<div class="btn-container">
<div class="line-one ">
<div class="btn yellow " type="button" id="yellow">1</div>
<div class="btn red " type="button" id="red"> 2 </div>
</div>
<div class="line-two ">
<div class="btn green " type="button" id="green">3</div>
<div class="btn purple " type="button" id="purple">4</div>
</div>
</div>
</body>
<script src="simonGame.js"></script>
</html>