-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrocket.html
More file actions
29 lines (27 loc) · 906 Bytes
/
rocket.html
File metadata and controls
29 lines (27 loc) · 906 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
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<Title>Rocket</Title>
<link rel="stylesheet" href="css/rocket.css">
</head>
<body>
<div class="world">
<div class="legend">
<div>Fuel:<span class="stat-fuel"></span></div>
<div>Fuel:<span class="stat-fuel-tanks"></span></div>
<div>Speed:<span class="stat-speed"></span></div>
<div>Thrust:<span class="stat-thrust"></span></div>
<div>Heat:<span class="stat-heat"></span></div>
<div>Height:<span class="stat-height"></span></div>
<div>Height (MAX):<span class="stat-height-max"></span></div>
</div>
<div class="space"></div>
<div class="atmo"></div>
<div class="ground"></div>
<img src="images/rocket.png" class="rocket" alt="rocket"/>
</div>
<script src="js/rocket.js"></script>
<script src="js/control.js"></script>
</body>
</html>