-
Notifications
You must be signed in to change notification settings - Fork 0
/
bmi.html
55 lines (37 loc) · 1.43 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="fr">
<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">
<title>Quawim BMI calculator</title>
<script src="js/main.js"></script>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<form action="">
<h1>The BMI application </h1>
<label for="name">name</label> <input id="name" type="text">
<label for="surname">surname</label> <input id="surname" type="text">
<label for="height">height</label> <input id="height" type="number">
<label for="weight">weight</label> <input id="weight" type="number"></h3>
<div>
<input type="radio" name="sex" id="male"> <label for="male">male</label>
<input type="radio" name="sex" id="female"> <label for="female">female</label>
</div>
</form>
<div class="box">
<a class="button" href="#popup1" onclick="clcBmi()"><button >Calculate the BMI</button></a>
</div>
<div id="popup1" class="overlay">
<div class="popup">
<h2>Quawim BMI app</h2>
<a class="close" href="#">×</a>
<div class="content" id="content">
Thank to pop me out of that button, but now i'm done so you can close this window.
</div>
</div>
</div>
</body>
</html>
made with ❤️ by Ahmed Benarab