-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 911 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
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src='app.js'></script>
<link rel="stylesheet" type="text/css" href="style.css">
</script>
<title class="title">simple simon</title>
</head>
<body>
<div class="wrapper">
<div class="titlecard">simple simon</div>
<div class="game-area">
<div class="count">--</div>
<div class="play-area">
<div class="r1">
<div id="green"></div>
<div id="red"></div>
</div>
<div class="r2">
<div id="yellow"></div>
<div id="blue"></div>
</div>
</div>
<div class="start">start</div>
</div>
<div class="strict">strict OFF</div>
<div class="footer">created by jspeda
<a class="github" href="http://github.com/jspeda"><img src="github.png" alt="github"></a>
</div>
</div>
</body>
</html>