diff options
Diffstat (limited to 'html/plains/index.html')
-rw-r--r-- | html/plains/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/html/plains/index.html b/html/plains/index.html new file mode 100644 index 0000000..508e7e0 --- /dev/null +++ b/html/plains/index.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <title>Top-down Adventure</title> + <style> + * { + margin: 0; + padding: 0; + box-sizing: border-box; + } + body { + background: #f0f0f0; + overflow: hidden; + } + canvas { + display: block; + width: 100vw; + height: 100vh; + } + </style> +</head> +<body> + <canvas id="gameCanvas"></canvas> + <script src="game.js"></script> +</body> +</html> \ No newline at end of file |