forked from pedro-afk/IMC-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 990 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/style.css">
<title>meuimc.org</title>
</head>
<body>
<div class="content">
<h1>Calcule seu imc aqui!</h1>
<p>Seja bem-vindo ao nosso software de calculo de IMC aproveite!</p>
<form>
<label>Nome</label>
<input type="text" id="nome" placeholder="Digite seu nome..." required/><br><br>
<label>Peso</label>
<input type="text" id="peso" placeholder="Digite seu peso..." required/><br><br>
<label>Altura</label>
<input type="text" id="altura" placeholder="Digite sua altura..." required/><br><br>
<button class="btn" id="calcula-imc">Calcular IMC</button>
</form>
</div>
<script src="./js/script.js"></script>
</body>
</html>