Advertisement
Guest User

Untitled

a guest
Dec 14th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <meta charset="utf-8" />
  6. <title>FlattyBird</title>
  7. <link href="style.css" rel="stylesheet" /> </head>
  8. <script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
  9. <body>
  10. <div id="container">
  11. <div id="bird"></div>
  12. <div id="pole_1" class="pole"></div>
  13. <div id="pole_2" class="pole"></div>
  14. </div>
  15. <div id="score_div">
  16. <p><b>Score: </b><span id="score">0</span></p>
  17. <p><b>Speed: </b><span id="speed">5</span></p>
  18. </div>
  19. <div id="help">
  20. <p>Player: Use space bar to control the bird</p>
  21. </div>
  22. <button id="restart_btn">Restart</button>
  23. <script src="script.js"></script>
  24. </body>
  25.  
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement