-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (36 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.9">
<title>Calculadora IMC</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="calculator">
<div class="container">
<h1>Calculadora IMC</h1>
<div class="input_area">
<h2>
<label for="altura">Altura (cm)</label>
</h2>
<input type="number" id="height" placeholder="Altura..." name="altura">
</div>
<div class="input_area">
<h2>
<label for="peso">Peso (kg)</label>
</h2>
<input type="number" id="weight" placeholder="Peso..." name="peso">
</div>
<button onclick="calculate()">Calcular</button>
<textarea name="" id="result" rows="4"></textarea>
</div>
</div>
<footer class="dev">
<h2>
Desenvolvido por Frederico Augusto Magalhães - 2023
</h2>
</footer>
<script src="index.js"></script>
</body>
</html>