-
Notifications
You must be signed in to change notification settings - Fork 0
/
body_fat.html
28 lines (28 loc) · 1.07 KB
/
body_fat.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Body Fat Percentage Calculator</title>
<link rel="stylesheet" href="tools_ele.css">
</head>
<body>
<div class="container">
<h2>Body Fat Percentage Calculator</h2>
<label for="gender">Gender:</label>
<select id="gender">
<option value="male">Male</option>
<option value="female">Female</option>
</select>
<label for="weight">Weight (kg):</label>
<input type="number" placeholder="Enter your weight" id="weight">
<label for="waist">Waist Circumference (cm):</label>
<input type="number" placeholder="Enter your waist circumference" id="waist">
<label for="hip">Hip Circumference (cm):</label>
<input type="number" placeholder="Enter your hip circumference" id="hip">
<button onclick="calculateBodyFatPercentage()">Calculate</button>
<div id="result"></div>
</div>
<script src="body.js"></script>
</body>
</html>