diff options
Diffstat (limited to 'html/fps/index.html')
-rw-r--r-- | html/fps/index.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/html/fps/index.html b/html/fps/index.html new file mode 100644 index 0000000..4715b47 --- /dev/null +++ b/html/fps/index.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Hedge Maze</title> + <style> + body { + margin: 0; + padding: 0; + overflow: hidden; + background-color: #000; + } + canvas { + display: block; + } + </style> +</head> +<body> + <canvas id="gameCanvas"></canvas> + <script type="module" src="game.js"></script> +</body> +</html> |