-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
45 lines (42 loc) · 1.32 KB
/
test.html
File metadata and controls
45 lines (42 loc) · 1.32 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
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Gravity Dog</title>
<link rel="stylesheet" type="text/css" href="css/style.css"
media="screen" />
</head>
<body class="nomargin no-text-select">
<div id="game-div">
<h1 style="font-family: 'silkscreennormal';">Gravity Dog Test Page</h1>
<div id="game-div">
<canvas id="canvas" class="pixelated" width="480" height="480">I'm sorry. You can't play the game on this browser. Try a newer browser.</canvas>
</div>
<!--
<script async
src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
-->
<!-- Gravity Dog Ad -->
<!--
<ins class="adsbygoogle" style="display: block"
data-ad-client="ca-pub-8525289492361616" data-ad-slot="6972347028"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
-->
</div>
<img id="sprites" src="img/sprites.png"
alt="Could not load sprites.png!" />
<span id="messages"></span>
<script src="js/verge.min.js"></script>
<script src="js/vg.js"></script>
<script src="js/prop.js"></script>
<script src="js/sprite.js"></script>
<script src="js/clickable.js"></script>
<script src="js/animator.js"></script>
<script src="js/grid.js"></script>
<script src="js/zsprites.js"></script>
<script src="js/gravitydog.js"></script>
</body>
</html>