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