-
Notifications
You must be signed in to change notification settings - Fork 0
/
simon.html
31 lines (28 loc) · 917 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
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Simple Simon game</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="css/simon.css">
</head>
<body>
<div id="container">
<h1 class="LCARS_color8">Simplest Simon game</h1>
<p>No damned frills, sounds, page styling or anything else.<br>The cool stuff comes in version 2.0.</p>
</div>
<div id="container">
<table>
<tr>
<td><div id="redBox" class="btn square"></div></td>
<td><div id="greenBox" class="btn square"></div></td>
</tr>
<tr>
<td><div id="blueBox" class="btn square"></div></td>
<td><div id="yellowBox" class="btn square"></div></td>
</tr>
</table>
<input type="button" id="start" value="Start"><div id="counter">Round: </div>
</body>
<script src="js/simon.js"></script>
</html>