-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.15 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Canvas Paint - Example 2</title>
<style type="text/css">
body{ background: url('../assets/bg.png') #f0eadc; }
canvas{display:block; background-color:#490A3D; border:4px solid #ddd;}
</style>
</head>
<body onload="GM.onload();">
<article>
<section class="canvas">
<canvas id="GameField" width="800" height="300">
<p>Unfortunately, your browser is currently unsupported by our web
application. We are sorry for the inconvenience. Please use one of the
supported browsers listed below, or draw the image you want using an
offline tool.</p>
<p>Supported browsers: <a href="http://www.opera.com">Opera</a>, <a
href="http://www.mozilla.com">Firefox</a>, <a
href="http://www.apple.com/safari">Safari</a>, and <a
href="http://www.konqueror.org">Konqueror</a>.</p>
</canvas>
</section>
</article>
</body>
<script src="js/jquery.js"></script>
<script src="js/gm.js"></script>
<script src="js/gm.manager.js"></script>
<script src="js/gm.player.js"></script>
<script src="js/gm.missile.js"></script>
<script src="js/gm.enemy.js"></script>
</html>