diff options
Diffstat (limited to 'js/mountain/index.html')
-rw-r--r-- | js/mountain/index.html | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/js/mountain/index.html b/js/mountain/index.html index 016ad87..75d47aa 100644 --- a/js/mountain/index.html +++ b/js/mountain/index.html @@ -2,11 +2,20 @@ <html lang="en"> <head> <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>mountain</title> - <script src="game.js"></script> + <title>2D Side Scrolling Platformer</title> + <style> + body { + margin: 0; + padding: 0; + background-color: beige; + } + #gameCanvas { + display: block; + } + </style> </head> <body> - <canvas id="mountain"></canvas> + <canvas id="gameCanvas"></canvas> + <script src="game.js"></script> </body> -</html> \ No newline at end of file +</html> |