-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 1004 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
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>BMI checker</title>
</head>
<body>
<div class="header">
<div class="wrapper">
<h1>BMI calculator</h1>
<p>Insert Your Age</p>
<input type="text" id="age" value="23">
<p>Insert Weight in Kg</p>
<input type="text" id="weight">
<br>
<p>Insert Height in cm</p>
<input type="text" id="height">
<br>
<button id="calc">check</button>
<p id="result"></p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="app.js"></script>
</body>
</html>