about summary refs log tree commit diff stats
path: root/js/hill/index.html
diff options
context:
space:
mode:
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>