-
Notifications
You must be signed in to change notification settings - Fork 0
/
lifestylesuggestion.html
119 lines (112 loc) · 4.87 KB
/
lifestylesuggestion.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lifestyle Suggestions - PCOS Management</title>
<link rel="stylesheet" href="styles7.css">
</head>
<body>
<header class="header-container">
<nav>
<img class="logo" src="images/1-removebg-preview (1).png" alt="PCOS Management Logo">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="selfdiagnosis.html">SelfDiagnosis</a></li>
<li><a href="dietplanner.html">DietPlanner</a></li>
<li><a href="yogaplanner.html">YogaPlanner</a></li>
<li><a href="cycletracker.html">CycleTracker</a></li>
<li><a href="lifestylesuggestion.html">LifestyleSuggestions</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero-section">
<div class="hero-content">
<h1>Take control of PCOS and regain your energy, confidence, and joy.</h1>
</div>
<img class="hero-image" src="images/lifestyle2-removebg-preview.png" alt="Lifestyle Suggestions Poster">
</section>
<section id="suggestions" class="lifestyle-suggestions">
<h2>Lifestyle Suggestions for Managing PCOS</h2>
<div class="image-row">
<img src="images\exercise1.jpg" alt="Image 1">
<img src="images\exercise2.jpg" alt="Image 2">
<img src="images\exercise3.jpg" alt="Image 3">
</div>
<div class="suggestion-box">
<div class="suggestion-category">
<h3>Diet</h3>
<ul>
<li>Balanced Diet: Focus on a diet rich in whole foods, including fruits, vegetables, whole grains, and lean proteins.</li>
<li>Low Glycemic Index Foods: Choose foods that have a low glycemic index to help control blood sugar levels.</li>
<li>Healthy Fats: Incorporate healthy fats such as avocados, nuts, seeds, and olive oil.</li>
<li>Avoid Processed Foods: Reduce intake of processed and sugary foods.</li>
<li>Regular Meals: Eat regular, balanced meals to help manage insulin levels.</li>
</ul>
</div>
</div>
<div class="suggestion-box">
<div class="suggestion-category">
<h3>Exercise</h3>
<ul>
<li>Regular Physical Activity: Aim for at least 150 minutes of moderate exercise or 75 minutes of vigorous exercise per week.</li>
<li>Strength Training: Include strength training exercises at least twice a week to improve insulin sensitivity and metabolism.</li>
<li>Consistency: Stay consistent with your exercise routine for the best results.</li>
</ul>
</div>
</div>
<div class="suggestion-box">
<div class="suggestion-category">
<h3>Weight Management</h3>
<ul>
<li>Healthy Weight: Achieving and maintaining a healthy weight can help manage symptoms.</li>
<li>Small, Achievable Goals: Set small, achievable weight loss goals if needed.</li>
</ul>
</div>
</div>
<div class="suggestion-box">
<div class="suggestion-category">
<h3>Stress Management</h3>
<ul>
<li>Mindfulness and Meditation: Practice mindfulness and meditation to reduce stress.</li>
<li>Adequate Sleep: Ensure you get 7-9 hours of sleep per night.</li>
<li>Relaxation Techniques: Engage in relaxation techniques such as yoga or deep breathing exercises.</li>
</ul>
</div>
</div>
<div class="suggestion-box">
<div class="suggestion-category">
<h3>Medical Management</h3>
<ul>
<li>Regular Check-Ups: Have regular check-ups with your healthcare provider.</li>
<li>Medications: Follow your doctor's advice regarding medications or treatments.</li>
</ul>
</div>
</div>
<div class="suggestion-box">
<div class="suggestion-category">
<h3>Support</h3>
<ul>
<li>Join Support Groups: Consider joining a support group for individuals with PCOS.</li>
<li>Educational Resources: Stay informed about PCOS and its management through reliable resources.</li>
</ul>
</div>
</div>
<div class="suggestion-box">
<div class="suggestion-category">
<h3>Supplements (Consult a Doctor First)</h3>
<ul>
<li>Inositol: Some studies suggest inositol can help with insulin sensitivity and ovulation.</li>
<li>Vitamin D: Many with PCOS have low levels of vitamin D; supplementation may be beneficial.</li>
<li>Omega-3 Fatty Acids: These can help reduce inflammation.</li>
</ul>
</div>
</div>
</section>
</main>
</body>
</html>