-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (61 loc) · 2.38 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
<!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" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="../styles.css" />
<title>BMI Calculator</title>
</head>
<body>
<div class="nav">
<nav>
<a href="/" aria-current="page">Home</a>
<!-- <a target="_blank" href="https://www.youtube.com/@chaiaurcode"
>Youtube channel</a> -->
</nav>
</div>
<div class="main">
<div class="container">
<div class="title">
<p class="p1 P">BMI </p>
<P class="p2 P">-CALCULATOR</P>
</div>
<div class="form">
<form>
<p><label>Height in CM: </label><input type="text" id="height" /></p>
<p><label>Weight in KG: </label><input type="text" id="weight" /></p>
<button><i class="fa-solid fa-calculator"></i></button>
<div id="results"></div>
<div id="weight-guide">
<h3>BMI Weight Guide</h3>
<p>Under Weight = Less than 18.6</p>
<p>Normal Range = 18.6 and 24.9</p>
<p>Overweight = Greater than 24.9</p>
</div>
</div>
</form>
</div>
</div>
<div class="details">
<p> <strong>SOCIAL MEDIA PROFILE</strong> </p>
<p>linkedin <abbr title=RAJDEEP></abbr><a href="https://www.linkedin.com/in/rajdeep-singha-225b32246/">RAJ</a></li>
<p>Instagram <abbr title=Rajdeep></abbr><a href="https://www.instagram.com/rajdeepsingha4/">RAJ</a></p>
<p>Github <abbr title=Rajdeep></abbr><a href="https://github.com/RajuC0der">RAJ</a></p>
<p>
CONTACT ME AT <a href="mailto:[email protected]">my email address.</a>
</p>
<p>
DIAL <a href="tel:9883781116">MY PH NO.</a>.
</p>
<footer>
<div class="foot">
<a href="#"><button id="top"><i class="fa-solid fa-arrow-up-from-bracket"></i></button></a>
</div>
</footer>
</div>
</body>
<script src="script.js"></script>
</html>