-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
29 lines (29 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en" style="height: 100%">
<head>
<meta charset="utf-8" />
<title>MMO in loving tribute to xkcd-1110</title>
<link href='http://fonts.googleapis.com/css?family=Walter+Turncoat' rel='stylesheet' type='text/css'>
</head>
<body style="height: 100%; margin: 0; text-align: center; font: 12pt Walter Turncoat, Comic Sans, Arial">
<footer style="position: absolute; bottom: 10px; width: 100%">
<a href='https://github.com/n01se/1110'>Homage</a> to xkcd,
especially <a href="http://xkcd.com/1110/">1110</a><br>
Follow @n01senet on twitter.
</footer>
<div style="padding-top: 5%">
<canvas id="viewport" width="740" height="649" style="border: 1px #000 solid"></canvas>
<br><br>
<div id="message">
<!--
Hello HackerNews. We're dealing with server resource issues (shocking!) please bear with us.
<br> Meanwhile, enjoy a <a href="http://www.youtube.com/watch?v=EvLxOVYeo5w">demo video</a> instead.
-->
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="util.js"></script>
<script src="network.js"></script>
<script src="1110.js"></script>
</body>
</html>