-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.47 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
<!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/style.css" />
<link rel="icon" href="imagens/icon.svg" />
<title>Calculadora IMC</title>
</head>
<body>
<header>
<h1>Calculadora IMC</h1>
</header>
<section>
<div class="caixaCalculo">
<img id="prancheta" src="./imagens/prancheta.svg" alt="prancheta" />
<h2 id="tituloSecundario">Preencha os dados:</h2>
<div class="inputs">
<p class="descricao">Altura (M):</p>
<input
id="primeiroInput"
type="text"
placeholder="(exemplo: 1,70)"
value=""
/>
<div>
<p class="descricao">Peso (Kg):</p>
<input
id="segundoInput"
type="text"
placeholder="(exemplo: 68)"
value=""
/>
</div>
<div class="botoes">
<button id="enviar">enviar</button>
<button id="limpar">limpar</button>
</div>
</div>
<div class="caixaResultado">
<p id="resultadoImc">Resultado:</p>
<p id="valor">0</p>
<p id="classificacao">Classificação</p>
</div>
</div>
</section>
<footer>
<p>© FranciscoBreno</p>
</footer>
<script src="./script/script.js"></script>
</body>
</html>