-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBMI.html
More file actions
32 lines (29 loc) · 810 Bytes
/
BMI.html
File metadata and controls
32 lines (29 loc) · 810 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BMI Generator</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<div class="container" >
<h1> BMI Calculator</h1>
<form>
<label>Height in cm : </label>
<input type="number" class="eve" id="sec1">
<br>
<label>Weight in kg :</label>
<input type="number" class="eve" id="sec2">
<br>
<button > Calculate</button>
<div id="results"></div>
<h3> BMI Weight Guide</h3>
<p>Under Weight = Less than 18.5</p>
<p>Normal Range = 18.6 and 24.9 </p>
<p>Over Weight = Greater than 24.9</p>
</div>
</form>
<script src="Bmi.js"></script>
</body>
</html>