index.html 332 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Space Game</title>
  6. </head>
  7. <body>
  8. <p>Image to use:</p>
  9. <p>Canvas:</p>
  10. <canvas id="myCanvas" width="1024" height="768" style="border:1px solid #d3d3d3;">
  11. Your browser does not support the HTML5 canvas tag.</canvas>
  12. <script src="app.js">
  13. </script>
  14. </body>
  15. </html>