Guest User

Untitled

a guest
Oct 19th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. <!--
  2. To change this template, choose Tools | Templates
  3. and open the template in the editor.
  4. -->
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <title>Hunt Game</title>
  9. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  10. <link href="Style.css" rel="stylesheet" type="text/css"/>
  11. <script type="text/javascript" src="HuntGame.js"></script>
  12. </head>
  13. <body>
  14. <div id="Cursor" onclick="shot()">
  15. <img src="Images/stag.gif" id="sprite" onclick="hit()"/>
  16. <img src="Images/386.jpg" width="640" height="437" alt="386"/>
  17. </div>
  18. <div>
  19. <table border="2" width="2" cellspacing="1" cellpadding="1">
  20. <thead>
  21. <tr>
  22. <th><input type="button" value="Start Game" id="Start" onclick="Start()"/></th>
  23. <th>Shots</th>
  24. <th><input type="text" id="shots" readonly size="1" value="20"/></th>
  25. <th>Stags</th>
  26. <th><input type="text" id="stags" readonly size="1" value="0"/></th>
  27. <th>Cows</th>
  28. <th><input type="text" id="cows" readonly size="1" value="0"/></th>
  29. <th>Hikers</th>
  30. <th><input type="text" id="hikers" readonly size="1" value="0"/></th>
  31. <th>Score</th>
  32. <th><input type="text" id="score" readonly size="1" value="0"/></th>
  33. </tr>
  34. </table>
  35.  
  36. </div>
  37. </body>
  38. </html>
Add Comment
Please, Sign In to add comment