-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (34 loc) · 1.14 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>
<head>
<meta charset="utf-8">
<title>SwineMeeper!</title>
<link rel="stylesheet" href="stylesheets/styles.css">
</head>
<body class="sm-container">
<div class="sm-playfield sm-col">
<table class="sm-grid" data-sm-grid>
</table>
</div>
<div class="sm-controls sm-col" id="sm-controls">
<select data-sm-difficulty>
<option value="easy" selected="selected">Easy</option>
<option value="normal">Normal</option>
<option value="hard">Hard</option>
</select>
<p data-sm-timer class="sm-timer"></p>
<button data-sm-reset class="sm-btn-reset">Start over</button>
<p data-sm-status-message></p>
<p class="sm-apm" data-sm-apm></p>
</div>
<!-- Libs -->
<script src="scripts/lib/jquery-3.0.0.slim.min.js"></script>
<script src="scripts/lib/modulejs-2.1.0.min.js"></script>
<!-- App -->
<script src="scripts/SwineMeeper.min.js"></script>
<script>
modulejs.require('main').start();
</script>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Chewy">
</body>
</html>