-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·32 lines (32 loc) · 969 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
<!DOCTYPE html>
<html manifest="slyd.manifest">
<head>
<title>slyd</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="viewport">
<h2>slyd</h2>
<div id="slyd_game" class="view">
<div id="container"></div>
<h2 id="timer"></h2>
<a href="" id="toggle_hint">Hint</a>
</div>
<div id="slyd_leaderboard" class="view">
<h2>Leaderboard</h2>
<ol id="leaders">
<li>No records set, this could be your chance!!</li>
</ol>
<h2>About:</h2>
<p>
Created by Ned Kahvo (@nedkahvo), 2013
<br/><br/>
Libraries used: <a href="http://purl.eligrey.com/github/classList.js/blob/master/classList.js">classList.js: Cross-browser full element.classList implementation.</a> by <a href="http://eligrey.com">Eli Grey</a>
</p>
</div>
</div>
<script src="slyd.js"></script>
</body>
</html>