-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (47 loc) · 1.2 KB
/
index.html
File metadata and controls
59 lines (47 loc) · 1.2 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Astro Weight Calculator</title>
</head>
<header>
<h1>Astro Weight Calculator</h1>
</header>
<form>
Please enter your weight (in lbs.)
<br>
<br>
<input type="text" name="userWeight" id="userWeight">
<br>
<br>
<label>Please select which planet you would like to be weighed on</label>
<br>
<br>
<select id="planet">
<option value="27.9">The Sun</option>
<option value="0.377">Mercury</option>
<option value="0.9032">Venus</option>
<option value="0.1655">Moon</option>
<option value="0.3895">Mars</option>
<option value="2.640">Jupiter</option>
<option value="1.139">Saturn</option>
<option value="0.917">Uranus</option>
<option value="1.148">Neptune</option>
<option value="0.06">Pluto</option>
</select>
<br>
<br>
<br>
<br>
<!-- This button calculates the users weight based on input above -->
<button type="button" onclick="calculateWeightOnOtherWorld() ">Calculate</button>
<br>
<br>
<!-- This will display the expected output -->
<p id="answerArea"></p>
<script src="index.js" type="text/javascript"></script>
</form>
<body>
</body>
<footer>
</footer>