diff options
author | elioat <hi@eli.li> | 2023-12-30 12:45:50 -0500 |
---|---|---|
committer | elioat <hi@eli.li> | 2023-12-30 12:45:50 -0500 |
commit | 37ae33c08b2ba09122b9d4dd28f3f1fafd8cffb4 (patch) | |
tree | bb7883837ea0980406230074a49e13a98653d044 /js/ship-game/index.html | |
parent | bb9e44f9ec52bc14c7547da861ba3ae9bf9ab632 (diff) | |
download | tour-37ae33c08b2ba09122b9d4dd28f3f1fafd8cffb4.tar.gz |
LAZER GATE
Diffstat (limited to 'js/ship-game/index.html')
-rw-r--r-- | js/ship-game/index.html | 24 |
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 |