-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 869 Bytes
/
index.html
File metadata and controls
37 lines (34 loc) · 869 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SAMTRIS</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/site-specific.css" />
<script language="javascript" type="text/javascript" src="js/lib/require.min.js" data-main="js/app"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-12">
<center>
<br />
<br />
<canvas id="myCanvas" width="640" height="400"></canvas>
<div style="font: 16px SDSnatcher; line-height: 20px;">
Keys:<br/>
left, right, down: move<br/>
up: rotate<br/>
space: drop
</div>
</center>
</div>
</div> <!-- row -->
</div> <!-- container -->
<script>
context = document.getElementById("myCanvas").getContext("2d");
context.font = "16px SDSnatcher";
context.fillStyle = "white";
context.fillText("LOADING...", 16, 32);
</script>
</body>
</html>