about summary refs log tree commit diff stats
path: root/html/isometric-bounce/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/isometric-bounce/index.html')
-rw-r--r--html/isometric-bounce/index.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/html/isometric-bounce/index.html b/html/isometric-bounce/index.html
new file mode 100644
index 0000000..570f247
--- /dev/null
+++ b/html/isometric-bounce/index.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <title>Bouncy Isometric Guy</title>
+    <style>
+        body {
+            margin: 0;
+            overflow: hidden;
+        }
+        canvas {
+            display: block;
+            width: 100vw;
+            height: 100vh;
+            background: #bce8ff;
+        }
+    </style>
+</head>
+<body>
+    <canvas id="gameCanvas"></canvas>
+    <script src="js/game.js"></script>
+</body>
+</html>
\ No newline at end of file