-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
32 lines (29 loc) · 884 Bytes
/
index.html
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
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>Command and Control</title>
<link href='http://fonts.googleapis.com/css?family=Merriweather+Sans:400,300' rel='stylesheet' type='text/css'>
<link href="index.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="bottom-align">
<img class="ship" src="resources/spaceship-off.png" style="left:0; bottom:0"></img>
</div>
</div>
<div class="control">
<h2>
Mission Control
</h2>
<form>
<input type="text"></input>
<button>Go</button>
</form>
<br>
Commands: launch, go [left, right, up, down], rotate [# degrees]
</div>
<!-- jQuery is only used whenever you see a "$" in script.js -->
<script src="resources/jquery-2.1.3.js"></script>
<script src="script.js"></script>
</body>
</html>