-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
37 lines (35 loc) · 1.21 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="MY BMI.css">
<script src="MY BMI.js"></script>
</head>
<body >
<div class="box">
<h1>BMI CALCULATOR</h1>
<p>Enter Your weight
<input type="text" placeholder="Weight" id="weight">
<select name="multiple" id="weightunit">
<option value="kg">kilogram</option>
<option value="pound">pound</option>
</select>
<p>Enter Your height
<input type="text" placeholder="height" id="height">
<select name="multiple" id="heightunit">
<option value="meter">meter</option>
<option value="inch">inches</option>
</select>
</p>
<input type="button" value="ComputeBMI" onclick="BMI();" class="submit">
<h1>
YOUR BODY MASS INDEX(BMI) IS : <span id="output">_____</span></h1>
<h3>
This means You are: <span id="comment">_____</span>
</h3>
</div>
<h5 id="Name">Made By BADAL JHA</h5>
</body>
</html>