forked from pedrohsantanaa/IMC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (66 loc) · 2.66 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
76
77
78
79
80
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="css/calculadora.css">
<title>Calculadora IMC</title>
</head>
<body>
<header class="">
<h1 id="titulo"> Calcule aqui sua massa Corporal:</h1>
</header>
<main id="conteudo" class="row">
<div class="col-7" id="dados">
<section class="row">
<div class="col-12">
<h2 id="nome" >Sexo</h2>
</div>
<!-- Botao Homem-->
<div class="col-3 ">
<button id="h" style="background-color: #4fa0b1;" onclick="homem()">Homem</button>
<!--<img id="img" src="img/img1.jpg">-->
</div>
<!--Botao Mulher-->
<div class="col-3">
<button id="m" style="background-color: #ca7786;" onclick="mulher()">Mulher</button>
</div>
<hr>
<div class="col-6"></div>
</section>
<section id="preechimentos" class="row">
<!-- Conteudo Lateral-->
<div class="col-8">
<form>
<h2 id="nome">Idade</h2><br>
<input placeholder="" type="number" class="" id="botao1">
<label>anos</label><br>
<hr>
<h2 id="altura">Altura</h2><br>
<input placeholder="" type="number" class="" id="botao2">
<label>cm</label>
<hr>
<h2 id="peso">Peso</h2><br>
<input placeholder="" type="number " class="" id="botao3">
<label>kg</label><br>
</form>
<div >
<button id="calcular" class="" onclick="calcular()" >Calcular</button>
</div>
</div>
<!-- Resultado-->
<div class="col-4">
<img id="imgResult" src="img/img1.png" >
</div>
</section>
</div>
<div class="col-1" style="margin: 0% !important;"></div>
<div id="resultado" class="col-4">
<p id="txt"></p>
</div>
</main>
</body>
<script src="js/calculadora.js"></script>
</html>