-
Notifications
You must be signed in to change notification settings - Fork 1
/
Q5.html
32 lines (31 loc) · 976 Bytes
/
Q5.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
<!DOCTYPE html>
<html>
<head>
<title>BMI</title>
<style>
body{
position: relative;
top: 250px;
left: 450px;
}
</style>
<script>
function getBMI(){
let ht= document.getElementById("height").value;
let wt= document.getElementById("weight").value;
let result= wt/(ht*ht);
document.getElementById("BMI").value= result;
}
</script>
</head>
<body>
<label for="height">Height</label>
<input type="number" name="height" id="height">
<label for="weight">Weight</label>
<input type="number" name="weight" id="weight">
<input type="button" value="CALCULATE" onclick="getBMI()">
<br> <br>
<label for="BMI">BMI</label>
<input type="number" name="BMI" id="BMI">
</body>
</html>