-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (20 loc) · 799 Bytes
/
index.html
File metadata and controls
26 lines (20 loc) · 799 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
<html>
<head>
<title>Safe landing - old rocket simulator</title>
<script src="./jquery.js"></script>
<script src="./jsmonoterm.js"></script>
<link rel="stylesheet" type="text/css" href="./jsmonoterm.css"/>
</head>
<body style="text-align:center">
<h1>Safe Landing</h1>
<p>Clone of the old <strong>Rocket</strong> game found in the book
<a href="http://en.wikipedia.org/wiki/BASIC_Computer_Games">101 basic computer games</a><br/> the task is
to accurately land the spacecraft by controlling burn of braking rockets.<br/>
See <a href="https://github.com/CodeAbbey/safe-landing">project page at GitHub</a> for
the sources.</p>
<div style="display:inline-block;border: 5px solid #555; border-radius: 5px;">
<div id="terminal"></div>
</div>
<script src="./rocket.js"></script>
</body>
</html>