-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (49 loc) · 1.69 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IMC - Índice de Massa Corporal</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<section class="container">
<h1>Tabela IMC</h1><br>
<section class="imc-valor">
<h2>IMC</h2>
<p>
Menos do que 18,50 <br>
Entre 18,5 e 24,90 <br>
Entre 25 e 29,90 <br>
Entre 30 e 34,90 <br>
Entre 35 e 39,90 <br>
Mais do que 40
</p>
</section>
<section class="resultado">
<h2>Resultado</h2>
<p>
Abaixo do Peso <br>
Peso Normal <br>
Sobrepeso <br>
Obesidade grau 1 <br>
Obesidade grau 2 <br>
Obesidade grau 3 <br>
</p>
</section>
<section class="form">
<h1>Calcule Seu IMC</h1>
<form>
<label for="">Peso: (Quilos)</label>
<input type="text" id="peso" placeholder="Minimo 20kg e Maximo 400kg">
<label for="">Altura: (Metros)</label>
<input type="text" id="altura" placeholder="Minimo 0.55m e Maximo 3m">
<button>Enviar</button>
</form>
</section>
<section class="resultadoImc" id="ImcResultado">
</section>
</section>
<script src="./assets/js/main.js"></script>
</body>
</html>