-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="" href="style.css">
<script src="script.js"></script>
<title>BMI Calculator</title>
</head>
<body>
<section id="bmi">
<div class="wrapper">
<div class="title">
<h1>Body Mass Index (BMI) Calculator</h1>
</div>
<div class="exceprt mb-50px">
<span>Enter your weight and height below to check your BMI result</span>
</div>
<div class="wrapper-input">
<div class="wp-box">
<label>Put your weight in here (KG)</label>
<input type="text" type="number" min="0" id="weight" placeholder="" />
</div>
<div class="wp-box">
<label>And your height in here (CM)</label>
<input type="text" type="number" min="0" id="height" placeholder="" />
</div>
</div>
<div class="wrapper-button mb-20px">
<button class="button button1" type="button" onclick="validateForm()">
Calculate
</button>
</div>
<div class="wrapper-result" id="result">
<span></span>
</div>
</div>
</section>
</body>
</html>