about summary refs log tree commit diff stats
path: root/js/ship-game/index.html
diff options
context:
space:
mode:
authorelioat <hi@eli.li>2023-12-30 12:45:50 -0500
committerelioat <hi@eli.li>2023-12-30 12:45:50 -0500
commit37ae33c08b2ba09122b9d4dd28f3f1fafd8cffb4 (patch)
treebb7883837ea0980406230074a49e13a98653d044 /js/ship-game/index.html
parentbb9e44f9ec52bc14c7547da861ba3ae9bf9ab632 (diff)
downloadtour-37ae33c08b2ba09122b9d4dd28f3f1fafd8cffb4.tar.gz
LAZER GATE
Diffstat (limited to 'js/ship-game/index.html')
-rw-r--r--js/ship-game/index.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/js/ship-game/index.html b/js/ship-game/index.html
new file mode 100644
index 0000000..8c46ae7
--- /dev/null
+++ b/js/ship-game/index.html
@@ -0,0 +1,24 @@
+<html lang="en">
+<head>
+    <title>LAZER GATE 1</title>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <style>
+        body {
+            background-color: beige;
+        }
+        canvas {
+            background-color: rgb(5, 10, 94);
+            border: 1px solid black;
+        }
+        body, canvas {
+            padding: 1em;
+            margin: 1em;
+            border: 1em;
+        }
+    </style>
+</head>
+<body>
+    <canvas id="gameCanvas"></canvas>
+    <script src="game.js"></script>
+</html>
\ No newline at end of file