-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (43 loc) · 1.6 KB
/
Copy pathindex.html
File metadata and controls
51 lines (43 loc) · 1.6 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Página Pessoal - Conscientização sobre a Obesidade</title>
<link rel="icon" type="image/svg+xml" href="img/favicon.svg">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Saúde & Conscientização</h1>
<nav>
<!-- Menu antigo (sem Flexbox):
<a href="index.html">Início</a> |
<a href="causas-prevencao.html">Causas & Prevenção</a> |
<a href="mitos-fatos.html">Mitos & Fatos</a> |
<a href="consequencias.html">Consequências à Saúde</a>
-->
<!-- Menu atual (Flexbox): -->
<a href="index.html">Início</a>
<a href="causas-prevencao.html">Causas & Prevenção</a>
<a href="mitos-fatos.html">Mitos & Fatos</a>
<a href="consequencias.html">Consequências à Saúde</a>
</nav>
</header>
<main>
<h1>O que é a Obesidade?</h1>
<img src="img/hero.jpg" alt="Estilo de vida saudável e saúde">
<p>
A <strong>obesidade</strong> é uma condição médica caracterizada pelo acúmulo excessivo de gordura corporal.
</p>
<p>
Segundo a Organização Mundial da Saúde (OMS), a obesidade é diagnosticada quando o Índice de Massa Corporal (IMC) é igual ou superior a <mark>30 kg/m<sup>2</sup></mark> (fórmula: peso/altura<sup>2</sup>).
</p>
<p>
<b>Importante:</b> Trata-se de uma doença crônica multifatorial que exige <small>acompanhamento médico adequado</small>.
</p>
</main>
<footer>
<p>© 2026 - Projeto de Conscientização sobre a Obesidade</p>
</footer>
</body>
</html>