-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrocket.html
More file actions
41 lines (37 loc) · 1.13 KB
/
rocket.html
File metadata and controls
41 lines (37 loc) · 1.13 KB
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
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rocket Launch Sequence!</title>
<link rel="stylesheet" type="text/css" href="CSS/rocket.css">
<script type="text/javascript" src="JS/rocket.js"></script>
</head>
<body class="body-state1">
<div class="left">
<div class="state1">
<h1>JS Rocket Launch!</h1>
<a href="#" class="button" onclick="changeState(2);">Launch!</a>
</div>
<div class="state2">
<h1 id="countdown">10</h1>
<a href="#" class="button" onclick="changeState(1);">Abort!</a>
</div>
<div class="state3">
<h1>Lift Off!</h1>
</div>
<div class="state4">
<h1>Well Done!</h1>
<a href="#" class="button" onclick="changeState(1);">Do it Again!</a>
</div>
<div class="state5">
<h1>Oh No!!!</h1>
<a href="#" class="button" onclick="changeState(1);">Try Again!</a>
</div>
</div>
<div class="right">
<div class="ground"></div>
<div class="rocket"></div>
</div>
</body>
</html>