-
Notifications
You must be signed in to change notification settings - Fork 0
/
foodtips.html
47 lines (47 loc) · 1.77 KB
/
foodtips.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Food Tips</title>
<link rel="stylesheet" href="styles4.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="food-tips">
<div class="container">
<h1>Food Tips</h1>
<p>Here are some tips for managing your diet with PCOS:</p>
<ul>
<li>Eat a balanced diet with plenty of fruits, vegetables, lean proteins, and whole grains.</li>
<li>Avoid processed foods, sugary snacks, and sugary drinks.</li>
<li>Limit your intake of refined carbohydrates and opt for whole grain options instead.</li>
<li>Include healthy fats, such as those found in nuts, seeds, and avocados, in your diet.</li>
<li>Stay hydrated by drinking plenty of water throughout the day.</li>
</ul>
<button onclick="goBack()">Back</button>
</div>
</section>
</main>
<footer class="footer-container">
<!-- Footer content -->
</footer>
<script src="script3.js"></script>
</body>
</html>