-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1006 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
34
35
36
37
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Calculador de IMC</title>
</head>
<body>
<div class="container">
<div>
<h1>Calculadora de IMC</h1>
</div>
<div class="input">
<label for="">Nome: <br></label>
<input type="text" id="name">
</div>
<div class="input">
<label for="">Altura: <br></label>
<input type="number" id="altura">
</div>
<div class="input">
<label for="">Peso: <br></label>
<input type="number" id="peso">
</div>
<div id="resultado"></div>
<button id="button">Calcular o IMC</button>
</div>
<footer>
<h3>Desenvolvido por Patrick Baptista</h3>
</footer>
<script src="/script.js"></script>
</body>
</html>