-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (25 loc) · 824 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>BMI-Calculator</title>
</head>
<body>
<div class="head">
<h2>BMI-CALCULATOR</h2>
</div>
<div class="container">
<p>Height: Kripya krke meters m hi daale</p>
<input type="text" name="height" id="height" placeholder="Enter your height in m's">
<p>Weight: Grams m mt daalna chadarmod!</p>
<input type="text" name="weight" id="weight" placeholder="Enter your weight in kg's">
<button type="submit" id="submit">Submit</button>
<button id="clear">Clear</button>
</div>
<div id="results">
</div>
<script src="script.js"></script>
</body>
</html>