-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 1.18 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Índice de massa corporal</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/estilo.css">
</head>
<body>
<main id="centralizar">
<section id="container">
<article class="titulo">
Calculadora - IMC
</article>
<article class="input">
<label for="Nome">Nome:</label>
<input type="text" id="nome">
</article>
<article class="input">
<label for="Altura">Altura:</label>
<input type="number" id="altura">
</article>
<article class="input">
<label for="Peso">Peso:</label>
<input type="number" id="peso">
</article>
<button id="calcular">Calcular</button>
<div class="resultado" id="resultado"></div>
</section>
</main>
<script src="js/my_script.js"></script>
</body>
</html>