-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (65 loc) · 2.1 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Weight on Other Planets</title>
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<header>
<h1>Your Weight on Other Planets</h1>
</header>
<section>
<div>
<p>Enter your weight in any unit:
<input type="number" name="txtweight" id="txtweight">
</p>
<p>
Choose a planet:
</p>
<p>
<input type="radio" name="radplanet" id="mercury" checked>
<label for="mercury">Mercury</label>
</p>
<p>
<input type="radio" name="radplanet" id="venus">
<label for="venus">Venus</label>
</p>
<p>
<input type="radio" name="radplanet" id="mars">
<label for="mars">Mars</label>
</p>
<p>
<input type="radio" name="radplanet" id="jupiter">
<label for="jupiter">Jupiter</label>
</p>
<p>
<input type="radio" name="radplanet" id="saturn">
<label for="saturn">Saturn</label>
</p>
<p>
<input type="radio" name="radplanet" id="uranus">
<label for="uranus">Uranus</label>
</p>
<p>
<input type="radio" name="radplanet" id="neptune">
<label for="neptune">Neptune</label>
</p>
<p>
<input type="button" value="Calculate" onclick="calculate()">
</p>
</div>
<div id="res">
<p style="text-align:center">
Enter your weight on Earth
</p>
<img src="earth.png" alt="Earth">
</div>
</section>
<footer>
<p><strong>The images of the planets are from NASA</strong></p>
</footer>
<script src="script.js"></script>
</body>
</html>