-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 1.76 KB
/
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
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Simon!</title>
<meta name="author" content="Panagiotis Skarlas">
<meta name="description" content="Retro Simon Game">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Audiowide" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400" rel="stylesheet">
</head>
<body>
<div id="game">
<div class="centered">
<button class="btn simonbutton unclickable" id="green" data-value="0"></button>
<button class="btn simonbutton unclickable" id="red" data-value="1"></button>
</div>
<div id="controls">
<h1>Simon</h1>
<div id="screen">
<h2>--</h2>
</div>
<div class="d-block"></div>
<button id="onoff" class="shadow">Start</button>
<button id="strictmode" class="shadow">Strict</button>
</div>
</div>
<div class="centered">
<button class="btn simonbutton unclickable" id="yellow" data-value="2"></button>
<button class="btn simonbutton unclickable" id="blue" data-value="3"></button>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.0.9/howler.core.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>