-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.54 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
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="bundle.js">
</script>
<title>Smoot</title>
<link rel="stylesheet" href="stylesheets/reset.css" />
<link rel="stylesheet" href="stylesheets/main.css" />
<script src="https://use.fontawesome.com/5d206d2160.js"></script>
<link href="https://fonts.googleapis.com/css?family=Russo+One" rel="stylesheet">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
</head>
<body>
<h1>Smoot</h1>
<canvas></canvas>
<div id="instructions" class="modal">
<div class="modal-content">
<h2>Instructions</h2>
<ul>
<li>Move your mouse (within the board) to aim; click to shoot.</li>
<li>Clear the Smoots by making 3 or more of a kind.</li>
<li>If the Smoots reach the bottom, you lose.</li>
<li>Click START or press any key to begin.</li>
</ul>
<span class="close-modal">start</span>
</div>
</div>
<footer>
<ul class="footer-links">
<li><a href="http://www.mren.io/">Michael Ren</a></li>
<li>
<a href="https://www.linkedin.com/in/ren206">
<i class="fa fa-linkedin fa-lg" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="http://www.github.com/ren206">
<i class="fa fa-github fa-lg" aria-hidden="true"></i>
</a>
</li>
</ul>
</footer>
</body>
<script src="lib/modal.js"></script>
</html>