-
-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathindex.html
57 lines (56 loc) · 1.7 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
<!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" />
<title>BMI Calculator</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<h3><b>B</b>ody <b>M</b>ass <b>I</b>ndex Calculator</h3>
<form class="form" id="form" onsubmit="return validateForm()">
<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="clear">Clear</button>
<button type="button" id="submit" >Submit</button>
</form>
<script src="index.js"></script>
</body>
</html>