Guest User

Untitled

a guest
Dec 14th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>JS Pinball</title>
  5. <script type="text/javascript">
  6. function startGame() {
  7. window.open("game.html", "Game", "width=440,height=620");
  8. }
  9. </script>
  10. <link rel="stylesheet" type="text/css" href="css/main.css">
  11. </head>
  12. <body>
  13. <h1>Javascript Pinball</h1>
  14.  
  15. <img src="img/pinball.jpg">
  16.  
  17. <br />
  18.  
  19. <input type="button" onclick="startGame()" value="Launch the Game" />
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment