1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <title>Space Game</title>
- </head>
- <body>
- <p>Image to use:</p>
- <p>Canvas:</p>
- <canvas id="myCanvas" width="1024" height="768" style="border:1px solid #d3d3d3;">
- Your browser does not support the HTML5 canvas tag.</canvas>
- <script src="app.js">
- </script>
- </body>
- </html>
|