-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (63 loc) · 1.79 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="js/index.js" defer></script>
<link rel="stylesheet" href="css/style.css">
<title>Calculadora IMC</title>
</head>
<body>
<section id="main">
<div id="form_user">
<form id="user_data">
<label for="name">Nome e Sobrenome</label>
<br>
<input type="text"
id="name"
name="name"
placeholder="Digite seu nome">
<br><br>
<label for="age">Idade</label>
<br>
<input type="number"
id="age"
name="age"
placeholder="Digite sua idade">
<br><br>
<label for="weight">Peso</label>
<br>
<input type="text"
id="weight"
name="weight"
placeholder="Digite seu peso">
<br><br>
<label for="heigth">Altura</label>
<br>
<input type="text"
id="heigth"
name="heigth"
placeholder="Digite sua altura em metros">
<br>
<button id="btn">Enviar Formulário</button>
</form>
</div>
<div id="imc_user">
<section id="show_imc">
<p>00.00</p>
</section>
<section id="mensage_imc">
<p></p>
</section>
<div id="container_loren_imc">
<section id="loren_imc">
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Possimus iste eos ipsum repellat voluptatibus dolorum exercitationem quasi, minima repellendus? Accusamus impedit aperiam odio. Numquam distinctio quod ipsum, architecto harum impedit.</p>
</section>
</div>
</div>
</section>
<footer>
© Calculadora IMC - Proz Educação
</footer>
</body>
</html>