-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
37 lines (27 loc) · 947 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
33
34
35
36
37
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="SillyHtmlGame.js"></script>
<style text="text/css">
td
{
padding-right: 8px;
}
</style>
</head>
</body>
<canvas id="stage" width="400" height="400" style="border: 1px solid #000;">
<p>It looks like you're using a bad browser, you luddite. You can remedy the
situation with
<a href="http://www.mozilla.com/firefox/" target="_blank">Firefox</a>
or <a href="http://www.google.com/chrome" target="_blank">Chrome</a> or
pretty much <a href="http://www.opera.com/" target="_blank">anything</a> that
isn't Internet Explorer.
</canvas>
<div id="testResults"></div>
<script type="text/javascript">
SillyHtmlGame.init('stage');
//SillyHtmlGame.collisionTest('testResults');
</script>
</body>
</html>