-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (24 loc) · 824 Bytes
/
index.html
File metadata and controls
28 lines (24 loc) · 824 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BMI Calculator</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container">
<h2>BMI Calculator</h2>
<form id="bmiForm">
<label for="height">Height (cm):</label>
<input type="text" id="height" name="height">
<label for="weight">Weight (kg):</label>
<input type="text" id="weight" name="weight">
<button type="submit">Calculate BMI</button>
</form>
<div id="results"></div>
</div>
<script src="script.js"></script>
</body>
</html>