-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 3.63 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<!-- Tag que otimiza a visualização do sistema em dispositivos móveis -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Tag que liga o arquivo de estilos CSS -->
<link rel="stylesheet" href="imc.css?v=10122025">
<!-- Link que liga o sitema à biblioteca de estilos Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Link que liga o sistema ã biblioteca de ícones Font Awesome -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous">
<title>Calculadora de IMC - Índice de Massa Corporal</title>
<!-- Meta tags SEO -->
<meta name="description"
content="Simples calculadora de IMC OnLine desenvolvida em Javascript por Tiago Bernardes">
<meta name="author" content="Tiago Bernardes">
<meta name="robots" content="index,follow">
<!-- Tag Canonical -->
<link rel="canonical" href="https://tiagobernardes.com.br/imc/">
<!-- Open Graph -->
<meta property="og:title" content="Calculadora de IMC OnLine - Índice de Massa Corporal">
<meta property="og:description"
content="Simples calculadora de IMC OnLIne desenvolvida em Javascript por Tiago Bernardes">
<meta property="og:image"
content="https://tiagobernardes.com.br/imc/assets/tiago-bernardes-calculadora-imc-javascript.jpg">
<meta property="og:url" content="https://tiagobernardes.com.br/imc/">
<meta property="og:type" content="website">
<meta property="og:locale" content="pt_BR">
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Calculadora de IMC OnLine - Índice de Massa Corporal">
<meta name="twitter:description"
content="Simples calculadora de IMC OnLine desenvolvida em Javascript por Tiago Bernardes">
<meta name="twitter:image"
content="https://tiagobernardes.com.br/imc/assets/tiago-bernardes-calculadora-imc-javascript.jpg">
</head>
<body>
<div class="container">
<h1><i class="fas fa-weight"></i><br> Calculadora de IMC OnLine</h1>
<form> <!-- Formulário para capturar os números a serem calculados -->
<label for="peso">Seu peso em Kg</label>
<input type="number" maxlength="5" name="peso" id="peso">
<label for="altura">Sua altura em metros</label>
<input type="number" maxlength="4" name="altura" id="altura"><br>
<button id="calcular">CALCULAR</button>
<button type="reset" id="limpar">LIMPAR</button>
</form> <!-- Fim do formulário ]-->
<div id="resultado"></div> <!-- Div que informa o peso e altura para cálculo -->
<div id="resultadoImc"></div> <!-- Div que exibie o resultado do IMC -->
<div id="mensagem"></div> <!-- Div que exibe uma mensagem com informações sobre o resultado do IMC -->
</div>
<a href="https://github.com/tiagobernard/calculadora-imc" target="_blank">
<img src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub" style="position: absolute; top: 0; right: 0; border: 0;">
</a>
<script src="imc.js"></script>
</body>
</html>