Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. Dino Game
  5. </title>
  6. <style>
  7. #gameScreen{
  8. border: 1px solid black;
  9. }
  10. img{
  11. display: none;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <canvas id ="gameScreen" width="800" height="500"></canvas>
  17. <script src="index.js" type="module"></script>
  18. <img id ="img_dino" src="dino.png">
  19. <img id ="img_back" src="back.jpg">
  20. <img id ="img_bomb" src="bomb.png">
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement