diff options
Diffstat (limited to 'html/space/index.html')
-rw-r--r-- | html/space/index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/html/space/index.html b/html/space/index.html new file mode 100644 index 0000000..9db977d --- /dev/null +++ b/html/space/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Space</title> + <style> + body { + margin: 0; + overflow: hidden; + background: black; + } + canvas { + display: block; + } + </style> +</head> +<body> + <canvas id="gameCanvas"></canvas> + <script type="module" src="game.js"></script> +</body> +</html> \ No newline at end of file |