about summary refs log tree commit diff stats
path: root/js/hill/index.html
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2023-12-31 15:37:51 -0500
committerelioat <elioat@tilde.institute>2023-12-31 15:37:51 -0500
commit4ea7cab6c36bc91a0f7a96bbc79667c1cceb6b8d (patch)
treefce89cf877e5facd0db1053819c513a5fc664bf3 /js/hill/index.html
parentf2867bea4a102b8cdd9814a6c264a69cefa263ba (diff)
downloadtour-4ea7cab6c36bc91a0f7a96bbc79667c1cceb6b8d.tar.gz
*
Diffstat (limited to 'js/hill/index.html')
-rw-r--r--js/hill/index.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/js/hill/index.html b/js/hill/index.html
new file mode 100644
index 0000000..d9bcd91
--- /dev/null
+++ b/js/hill/index.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>hill</title>
+    <style>
+        body {
+            margin: 0;
+            padding: 0;
+        }
+        #gameCanvas {
+            display: block;
+        }
+    </style>
+</head>
+<body>
+    <canvas id="gameCanvas"></canvas>
+    <script src="game.js"></script>
+</body>
+</html>