-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (59 loc) · 1.78 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
<!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">
<link rel="stylesheet" href="assets/css/style.css">
<title>Modelo</title>
</head>
<body>
<section class="container">
<h1>Tabela IMC</h1>
<table>
<thead>
<tr>
<th>IMC</th>
<th>Resultado</th>
</tr>
</thead>
<tbody>
<tr>
<td>Menos do que 18,5</td>
<td>Abaixo do peso</td>
</tr>
<tr>
<td>Entre 18,5 e 24,9</td>
<td>Peso normal</td>
</tr>
<tr>
<td>Entre 25 e 29,9</td>
<td>Sobrepeso</td>
</tr>
<tr>
<td>Entre 30 e 34,9</td>
<td>Obesidade grau 1</td>
</tr>
<tr>
<td>Entre 35 e 39,9</td>
<td>Obesidade grau 2</td>
</tr>
<tr>
<td>Mais do que 40</td>
<td>Obesidade grau 3</td>
</tr>
</tbody>
</table>
<form class="form">
<h1>Calcule seu IMC</h1>
<label for="input-teste-1">Peso:</label>
<input type="text" id="peso">
<label for="input-teste-2">Altura:</label>
<input type="text" id="altura">
<button id="btn">Enviar</button>
</form>
<div id="paragrafo"></div>
</section>
<script src="assets/js/main.js"></script>
</body>
</html>