forked from zyfer416/GYM-WEBSITE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhysiFit.html
62 lines (55 loc) · 2.15 KB
/
PhysiFit.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="PhysiFit.css">
<title>Physical Fitness</title>
</head>
<body>
<header>
<h1>Physical Fitness</h1>
<p>Your guide to a healthier and more active lifestyle</p>
</header>
<section>
<h2>What is Physical Fitness?</h2>
<p>
Physical fitness refers to the ability of your body to perform daily activities efficiently without undue fatigue.
It encompasses cardiovascular endurance, muscular strength, flexibility, and body composition.
</p>
<h2>Benefits of Physical Fitness</h2>
<ul>
<li>Improved cardiovascular health</li>
<li>Enhanced muscle strength and endurance</li>
<li>Better mental health and reduced stress</li>
<li>Improved flexibility and mobility</li>
<li>Better weight management</li>
</ul>
<h2>How to Stay Fit</h2>
<p>
Staying fit involves a combination of regular exercise, healthy eating, and sufficient rest.
Here are some tips to maintain your fitness:
</p>
<ul>
<li>Engage in at least 150 minutes of moderate exercise each week.</li>
<li>Include strength training exercises twice a week.</li>
<li>Maintain a balanced diet rich in fruits, vegetables, lean proteins, and whole grains.</li>
<li>Stay hydrated and drink plenty of water.</li>
<li>Get 7-8 hours of quality sleep each night.</li>
</ul>
<a href="https://en.wikipedia.org/wiki/Physical_fitness">Click here for more info</a>
</section>
<footer>
<p>© 2024 Physical Fitness Guide | All Rights Reserved</p>
</footer>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
offset: 300,
duration: 1400,
});
</script>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<script src="script.js"></script>
</body>
</html>