-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (45 loc) · 1.89 KB
/
index.html
File metadata and controls
54 lines (45 loc) · 1.89 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- icon cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<link rel="stylesheet" href="style.css" />
<title>BMI Calculator</title>
<link rel="icon" href="logo.png">
</head>
<body>
<header class="top">
<h1>
BMI Calculator
</h1>
</header>
<div class="container">
<div class="box">
<form>
<p><label> </label><input placeholder="Height in CM:" type="text" id="height" /></p>
<p><label> </label><input placeholder="Weight in KG:" type="text" id="weight" /></p>
<button>Calculate</button>
<div id="results"></div>
<div id="weight-guide">
<h5>BMI Weight Guide</h5>
<p>Under Weight = Less than 18.5</p>
<p>Normal Range = 18.5 and 24.9</p>
<p>Overweight = 25.0 and 29.9</p>
</div>
</form>
</div>
</div>
<script src="muntazirali.js"></script>
<div class="footer">
<a href="https://www.linkedin.com/in/iammuntazirali" aria-label="LinkedIn"><i
class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/iammuntazirali" aria-label="Github"><i class="fab fa-github"></i></a>
<a href="https://www.youtube.com/@Muntazir-Ali" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
<a href="https://www.instagram.com/iammuntazirali/" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://x.com/iammuntazirali" aria-label="X (Twitter)"><i class="fab fa-x-twitter"></i></a>
</div>
</body>
</html>