-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspace-planet.html
More file actions
73 lines (58 loc) · 1.75 KB
/
space-planet.html
File metadata and controls
73 lines (58 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Build A Planet</title>
<link rel="stylesheet" href="space.css" type="text/css" />
<link href='https://fonts.googleapis.com/css?family=Press+Start+2P' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<div id='stars'></div>
<div id='title'></div>
<br>
<div id="circle"></div>
</head>
<body>
<!--Space background-->
<div id='stars'></div>
<h1 id="planetname"> </h1>
<h1 id="score">0</h1>
<!--Planet goes here -->
<div id="planetandrings">
<div id="theplanet" onmouseover="PlaySound('mySound')"
onmouseout="StopSound('mySound')">
<div id="rocket-box"><img id="rocket-img" src="rocket.gif"></div>
<div id="square">
<div class="moon"><ul><li></li><li></li><li></li><li></li><li></li><li></li></ul></div>
</div>
<div id="planetrings"></div>
</div>
</div>
<!--Input to choose planet options goes here-->
<div id="build-planet">
<h3>Build Your Planet</h3>
<label>
<span class="label-txt">Planet Size</span>
<input id="size">
</label>
<label>
<span class="label-txt">Planet Color</span>
<input id="planetcolor" >
</label>
<label>
<span class="label-txt">Planet Name</span>
<input id="planetnameinput" type="text" >
</label>
<label>
<span class="label-txt"></span>
<div id="build">Build</div>
<div id="moon-add">Moon</div>
<div id="ring-add">Ring</div>
<div id="rocket">Launch Rocket</div>
</label>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="form.js"></script>
<script src = "music.js"></script>
<!--Music-->
<audio id='mySound' src='http://www.tannerhelland.com/dmusic/FromHere.ogg'/>
</body>
</html>