-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (52 loc) · 1.84 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calculadora IMC</title>
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="fav icon" href="./assets/img/Calculator.svg">
</head>
<body>
<div id="container">
<h1>Tabela IMC</h1>
<section class="viewTableIMC">
<div class="text">
<h2>IMC</h2>
<ul>
<li>Menor do que 18,5</li>
<li>Entre 18,5 e 24,9</li>
<li>Entre 25 e 29,9</li>
<li>Entre 30 e 34,9</li>
<li>Entre 35 e 39,9</li>
<li>Mais 40</li>
</ul>
</div>
<div class="text">
<h2>Resultado</h2>
<ul>
<li>Abaixo do peso</li>
<li>Peso normal</li>
<li>Sobrepeso</li>
<li>Obesidade grau I</li>
<li>Obesidade grau II</li>
<li>Obesidade grau III</li>
</ul>
</div>
</section>
<form action="" class="form">
<label for="weight">Peso<span> (Kg)</span>:</label>
<input type="text" id="weight" required placeholder="Peso em Quilograma">
<label for="height">Altura<span> (M)</span>:</label>
<input type="text" id="height" required placeholder="Altura em Metros">
<button>Calcular IMC</button>
</form>
<div class="writeIMC">
</div>
</div>
<footer>
<b> © <span class="date"></span> <a href="https://github.com/MagnoQueiroz" target="_blank">SYXNTHER</a></b>
</footer>
<script src="./assets/javascript/script.js"></script>
</body>
</html>