-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (93 loc) · 2.67 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<title>BMI </title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<link id="img" rel="imge" href="./img/bluedreambanner-1.jpg">
</head>
<body id="counter">
<div id="popshow" class="div2" >
<button class ="bt" >button</button>
<p id="result" style="color:black"></p>
</div>
<div>
<p>BODY MASS INDEX (BMI) CALCULATOR</p>
<div id="part1">
<label id="results">Your BMI is : </label>
<input class="result" type="text" name="Enter" id="bmi_result"/>
<br>
<label id="type">So You Are : </label>
<input class="result" type="text" name="Enter" id="bmi_type"/>
</div>
<hr>
<div id="part2">
<form>
<br>
<br>
<tr>
<td id="tdgender">
<label id="label">Enter Gender : </label>
<input type="text" name="Enter" id="gender" />
</td>
</tr>
<tr>
<td id="tdage">
<label id="labell">Enter your age :</label>
<input type="number" name="Enter" id="age" />
</td>
</tr>
<br>
<br>
</form>
<form>
<label for="weight" id="label2">Enter your height :</label>
<input type="text" name="Enter" id="height" value="" placeholder="i.e 182cm" />
<label for="weight" id="label3">Enter your weight : </label>
<input type="text" name="email" id="weight" value="" />
</form>
<select id="select1" height="48">
<option value="metres">metres</option>
<option value="inches">inches</option>
</select>
<select id="select2">
<option value="Kilograms">Kilograms</option>
<option value="bounds">bounds</option>
</select>
</div>
<br>
<br>
<p id="result"></p>
<button id="btn_clear">Clear</button>
<br>
<!-- <button id="btn_calculate">CALCULATE</button> -->
<input type="button" id="btn_calculate" value="CALCULATE" onclick=" pop(); calculate(); " >
<div id="result" class="answer">
</div>
</div>
</div>
<script src='script.js'></script>
</body>
</html>
<!-- <tr>
<td>
<label>Enter your height : </label>
<input type="text" name="Enter" id="input3" placeholder="i.e 1.8 or 70 feet" />
<br>
<select id="select1" height="48">
<option value="metres">metres</option>
<option value="inches">inches</option>
</select>
</td>
<div>
<td>
<label id="label3">Enter your weight : </label>
<input type="text" name="Enter" id="input4"/>
<br>
<select id="select2">
<option value="Kilograms">Kilograms</option>
<option value="bounds">bounds</option>
</select>
</td>
</tr> -->