-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 964 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Body Fat Calculator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div>
<div class="sexe">
<p>Gender</p>
<select id="g">
<option value="male">Male</option>
<option value="female">Female</option>
</select>
</div>
<div class="sSkin">
<p>Sum of Skinfolds</p>
<input id="skin" type="number" step="any"></input>
</div>
<div class="ssSkin">
<p>Square sum of Skinfolds</p>
<input id="sskin" type="number" step="any"></input>
</div>
<div class="age">
<p>Age</p>
<input id="a" type="number"></input>
</div>
<br>
<div class="submit">
<button id="sub">Submit</button>
</div>
</div>
<script src="js/calc.js"></script>
</body>
</html>