-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlyFar.html
More file actions
25 lines (25 loc) · 858 Bytes
/
FlyFar.html
File metadata and controls
25 lines (25 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>FlyFar</title>
<link rel="stylesheet" href="main-style.css" />
<script type="text/javascript" src="simpleGame.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body onload="init()">
<div id="all">
<aside id="howTo">
<h3>How to Play:</h3>
<ul>
<li>Move the plane with the mouse</li>
<li>Try to get as far as you can before time runs out</li>
<li>Gain time by collecting powerups - <img src="Images/BatteryPic.png" width="15em" height="15em" /></li>
<li>Have Fun and Fly Far!</li>
</ul>
</aside>
<div id="timeLeft"></div>
<button onclick="resetGame()">Restart Game</button>
</div>
</body>
</html>