diff options
author | elioat <elioat@tilde.institute> | 2023-12-31 15:37:51 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2023-12-31 15:37:51 -0500 |
commit | 4ea7cab6c36bc91a0f7a96bbc79667c1cceb6b8d (patch) | |
tree | fce89cf877e5facd0db1053819c513a5fc664bf3 /js/hill/index.html | |
parent | f2867bea4a102b8cdd9814a6c264a69cefa263ba (diff) | |
download | tour-4ea7cab6c36bc91a0f7a96bbc79667c1cceb6b8d.tar.gz |
*
Diffstat (limited to 'js/hill/index.html')
-rw-r--r-- | js/hill/index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/js/hill/index.html b/js/hill/index.html new file mode 100644 index 0000000..d9bcd91 --- /dev/null +++ b/js/hill/index.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>hill</title> + <style> + body { + margin: 0; + padding: 0; + } + #gameCanvas { + display: block; + } + </style> +</head> +<body> + <canvas id="gameCanvas"></canvas> + <script src="game.js"></script> +</body> +</html> |