-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 897 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
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<title>Simon Game</title>
</head>
<body>
<h1 id="banner">Simon Game</h1>
<div id="game">
<div id="button1" class="bigButton"></div>
<div id="button2" class="bigButton"></div>
<div id="button3" class="bigButton"></div>
<div id="button4" class="bigButton"></div>
<div id="circle">
<h2>Simon ®</h2>
<div id="count"><h3>- -</h3></div>
<h4>Start</h4>
<h4>Strict</h4>
<button id="start"></button>
<button id="strict"></button>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="simonEngine.js"></script>
</body>
</html>