generated from JoinCODED/TASK-Template
-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathindex.html
88 lines (83 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
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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
href="https://fonts.googleapis.com/css?family=Quicksand:400,700"
rel="stylesheet"
>
<link
rel="stylesheet"
href="style.css"
>
<title>BMI Calculator</title>
</head>
<body>
<h3><b>B</b>ody <b>M</b>ass <b>I</b>ndex Calculator</h3>
<form
class="form"
id="form"
>
<div class="row-one">
<input
type="text"
class="text-input"
id="age"
autocomplete="off"
required
/>
<p class="text">Age</p>
<label class="container">
<input
type="radio"
name="radio"
id="f"
>
<p class="text">Female</p>
<span class="checkmark"></span>
</label>
<label class="container">
<input
type="radio"
name="radio"
id="m"
>
<p class="text">Male</p>
<span class="checkmark"></span>
</label>
</div>
<div class="row-two">
<input
type="text"
class="text-input"
id="height"
autocomplete="off"
required
>
<p class="text">Height (cm)</p>
<input
type="text"
class="text-input"
id="weight"
autocomplete="off"
required
>
<p class="text">Weight (kg)</p>
</div>
<button
type="button"
id="submit"
onclick="calculateBMI()"
>Submit</button>
</form>
<script src="index.js"></script>
</body>
</html>