-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbmi.html
32 lines (31 loc) · 1.25 KB
/
bmi.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 lang="en">
<head>
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap"
rel="stylesheet">
<!-- Css Styles -->
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="css/owl.carousel.min.css" type="text/css">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="css/slicknav.min.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BMI Calculator</title>
</head>
<body>
<div class="calculator-container">
<h1>BMI CALCULATOR</h1>
<p>Height in meters:</p>
<input class="height-input-field" type="text">
<p>weight in kilograms:</p>
<input class="weight-input-field" type="text">
<button class="calculate"> Calculate</button>
</div>
<h3 class="result"></h3>
<p class="result-statement"></p>
<script src="js/bmi.js"></script>
</body>
</html>