-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 1.05 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
<!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>IMC - Home</title>
</head>
<body style="background-color: #202028;">
<div id="caixa">
<div id="titulo"><h1>Calcular IMC</h1></div>
<div class="container">
<div class="label">
<label>Altura</label>
</div>
<input type="text" name="altura" class="altura">
</div>
<div class="container">
<div class="label">
<label>Peso</label>
</div>
<input type="text" name="peso" class="peso">
</div>
<div>
<button>Aperte aqui para calcualar o seu IMC</button>
</div>
<div id="resposta"></div>
</div>
<script src="index.js"></script>
</body>
</html>