-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (67 loc) · 2.65 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
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cálculo IMC</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="container">
<h1 class="title">Tabela IMC</h1>
<div class="table">
<table>
<tr>
<th class="index">IMC</th>
<th>       Resultado</th>
</tr>
<tr>
<td class="index">Menos do que 18,5</td>
<td>       Abaixo do Peso</td>
</tr>
<tr>
<td class="index">Entre 18,5 e 24,9</td>
<td>       Peso Normal</td>
</tr>
<tr>
<td class="index">Entre 25 e 29,9</td>
<td>       Sobrepeso</td>
</tr>
<tr>
<td class="index">Entre 30 e 34,9</td>
<td>       Obesidade grau 1</td>
</tr>
<tr>
<td class="index">Entre 35 e 39,9</td>
<td>       Obesidade grau 2</td>
</tr>
<tr>
<td class="index">Mais do que 40</td>
<td>       Obesidade grau 3</td>
</tr>
</table>
</div>
<div id="execution">
<h4>
Calcule seu IMC
<img class="img" src="./assets/img/icon-imc.png" height="75px" width="75px">
<img class="img" src="./assets/img/imc-icon2.gif" height="75px" width="75px">
</h4>
<p>Informe os dados abaixo...</p>
<form action="" method="post" id="form">
<label for="peso">Peso (kg):</label>
<input type="text" class="weight" placeholder="Exemplo: 70.5" required/>
<label for="altura">Altura (cm):</label>
<input type="text" class="height" placeholder="Exemplo: 176" required/>
<button type="submit">Calcular</button>
</form>
</div>
<div class="result"></div>
<div id="ideal-weight" class="hide"></div>
<div id="liquid" class="hide"></div>
<div id="kcal" class="hide"></div>
</div>
<script src="./assets/js/main.js"></script>
</body>
</html>