You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 272B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Game</title>
  6. <style>
  7. body {
  8. margin: 0;
  9. }
  10. canvas {
  11. display: block;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <canvas id="canvas" width="640" height="480"></canvas>
  17. <script src="bundle.js"></script>
  18. </body>
  19. </html>