diff options
author | elioat <elioat@tilde.institute> | 2024-12-29 06:20:10 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-12-29 06:20:10 -0500 |
commit | 56375df183c97b1f5b5121af82aa024b918af88a (patch) | |
tree | c6c21d661b240277aafaf10bd718277bbc585c1c /html/isometric-bounce/index.html | |
parent | 326e29526606bf7a3d7623705e3baabf5302a071 (diff) | |
download | tour-56375df183c97b1f5b5121af82aa024b918af88a.tar.gz |
*
Diffstat (limited to 'html/isometric-bounce/index.html')
-rw-r--r-- | html/isometric-bounce/index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/html/isometric-bounce/index.html b/html/isometric-bounce/index.html new file mode 100644 index 0000000..570f247 --- /dev/null +++ b/html/isometric-bounce/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <title>Bouncy Isometric Guy</title> + <style> + body { + margin: 0; + overflow: hidden; + } + canvas { + display: block; + width: 100vw; + height: 100vh; + background: #bce8ff; + } + </style> +</head> +<body> + <canvas id="gameCanvas"></canvas> + <script src="js/game.js"></script> +</body> +</html> \ No newline at end of file |