| 12345678910111213141516 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
- <meta charset="UTF-8">
- <script src="js/gameScript.js"></script>
- <link rel="stylesheet" type="text/css" href="css/gameStyle.css">
- </head>
- <body onload="startGame()">
- <br>
- <button onmousedown="accelerate(-0.2)" onmouseup="accelerate(0.05)">ACCELERATE</button>
- <p>Use the ACCELERATE button to stay in the air</p>
- <p>How long can you stay alive?</p>
- </body>
- </html>
|