-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.65 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Hack the Solar System</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.sound.min.js"></script>
<script src="formtoggle.js"></script>
<script src="sketch.js"></script>
<script src="planet.js"></script>
<script src="star.js"></script>
<script src="astros.js"></script>
<script src="credit.js"></script>
<style> body {padding: 0; margin: 0;} </style>
</head>
<body>
<button class="edit-planets js-edit-planets">⬣</button>
<div class="form-container js-form-container">
<form id="mass-form">
<label>Select a planet to change its mass:</label>
<select id ="planets" class="btn">
<option>Select Planet</option>
<option>Jupiter</option>
<option>Saturn</option>
<option>Uranus</option>
<option>Neptune</option>
<option>Earth</option>
<option>Venus</option>
<option>Mercury</option>
<option>Mars</option>
</select>
<br/>
<label class="label padding-class"> Enter the Mass: </label>
<input type="field" id = "mass" class="padding-class"/>
<br/>
<label class="label"> Enter the Distance: </label>
<input type="number" class="padding-class" id = "distance"/>
<br/>
<input id="submit-btn" type="submit" value="Submit" class="btn padding-class">
</form>
</div>
</body>
<link rel="stylesheet" href="index.css">
</html>