generated from raja21068/yoga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloose-weight.html
338 lines (299 loc) · 10.7 KB
/
loose-weight.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Healthy Habits for Weight Loss</title>
<style>
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f7f9fb;
color: #333;
line-height: 1.6;
padding: 20px;
display: flex;
justify-content: center;
}
/* Wrapper for Centering Content */
.wrapper {
max-width: 1200px;
width: 100%;
}
/* Header */
header {
text-align: center;
background-color: #4caf50;
color: #fff;
padding: 2rem;
border-radius: 10px;
margin-bottom: 2rem;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
header p {
font-size: 1.2rem;
margin-top: 0.5rem;
}
/* Main Content */
main {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 1.5rem;
}
/* Habit Cards */
.habit-card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
padding: 1.5rem;
transition: transform 0.3s;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.habit-card:hover {
transform: translateY(-5px);
}
.habit-card h3 {
color: #4caf50;
font-size: 1.8rem;
margin-bottom: 1rem;
border-bottom: 2px solid #4caf50;
padding-bottom: 0.3rem;
}
.habit-card img {
width: 100%;
height: auto;
border-radius: 10px;
margin-bottom: 1rem;
}
.habit-card p {
font-size: 1rem;
margin-top: 0.5rem;
color: #555;
}
.habit-card ul {
list-style: none;
padding-left: 0;
margin-top: 1rem;
}
.habit-card ul li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.8rem;
color: #555;
font-size: 1rem;
line-height: 1.6;
background: #f1f1f1;
padding: 8px 12px;
border-radius: 8px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.habit-card button, .habit-card a {
background-color: #4caf50;
color: white;
padding: 0.5rem 1rem;
text-decoration: none;
border-radius: 5px;
display: inline-block;
margin-top: 1rem;
transition: background-color 0.3s;
}
.habit-card button:hover, .habit-card a:hover {
background-color: #388e3c;
}
/* Table Styling */
.meal-table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
font-size: 1rem;
color: #555;
}
.meal-table th, .meal-table td {
padding: 0.8rem;
border: 1px solid #ddd;
text-align: left;
}
.meal-table th {
background-color: #4caf50;
color: white;
font-weight: bold;
}
/* Section Styling */
.section {
background-color: #e8f5e9;
padding: 1.5rem;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.section h2 {
color: #2e7d32;
font-size: 1.8rem;
text-align: center;
}
.section p {
font-size: 1rem;
margin-top: 0.5rem;
text-align: center;
}
.section .card-container {
display: flex;
gap: 1rem;
margin-top: 1rem;
flex-wrap: wrap;
justify-content: center;
}
.section .card {
flex: 1;
background-color: #ffffff;
border-radius: 10px;
padding: 1rem;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 1rem;
}
.section .card h3 {
color: #388e3c;
margin-bottom: 1rem;
text-align: center;
}
.section .card ul {
list-style-type: none;
padding-left: 0;
text-align: left;
}
.section .card ul li {
padding-left: 1.5rem;
position: relative;
color: #555;
font-size: 1rem;
line-height: 1.6;
background: #f1f1f1;
padding: 8px 12px;
border-radius: 8px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 0.8rem;
}
/* Responsive Design */
@media (max-width: 768px) {
header h1 {
font-size: 2rem;
}
.habit-card h3, .section h2 {
font-size: 1.5rem;
}
.card-container {
flex-direction: column;
}
}
</style>
</head>
<body>
<div class="wrapper">
<header>
<h1>Healthy Habits for Weight Loss</h1>
<p>Discover habits that support a balanced, sustainable weight loss journey.</p>
</header>
<main>
<!-- Habit 4: Intermittent Fasting -->
<div class="habit-card">
<h3>1. Try Intermittent Fasting</h3>
<img src="images-e/16-2.png" alt="Intermittent Fasting">
<p>Intermittent fasting involves keeping your meals within a specific 8 to 10-hour window each day, allowing your body more time to burn calories. It may help you eat less and feel more energized.</p>
<ul>
<li>Choose an eating window, such as 8:00 am to 4:00 pm.</li>
<li>Eat meals during your most active hours.</li>
<li>Give your body plenty of time to rest and digest.</li>
</ul>
</div>
<!-- Habit 2: Exercise Regularly -->
<div class="habit-card">
<h3>2. Exercise Regularly</h3>
<img src="images-e/exercise.webp" alt="Exercise">
<p>Dedicate 30 minutes to physical exercise for a healthier body and a fresh mind.</p>
<a href="https://www.youtube.com/@FitnessClub-g8r">Learn More</a>
</div>
<!-- Diet Plan Table -->
<div class="habit-card">
<h3>3. Diet Plan</h3>
<table class="meal-table">
<thead>
<tr>
<th>Time</th>
<th>Weight Loss Plan</th>
</tr>
</thead>
<tbody>
<tr>
<td>9:00 AM</td>
<td>Warm Lemon Water or Coconut Water</td>
</tr>
<tr>
<td>11:00 AM</td>
<td>Fresh Fruit Smoothie or Seasonal Fruits</td>
</tr>
<tr>
<td>1:00 PM</td>
<td>Whole Grain Salad or Steamed Vegetables</td>
</tr>
<tr>
<td>4:00 PM</td>
<td>Coconut Water or Green Tea</td>
</tr>
<tr>
<td>7:00 PM</td>
<td>Vegetable Soup or Mixed Green Salad</td>
</tr>
</tbody>
</table>
</div>
<!-- Healthy Diet Changes -->
<div class="habit-card">
<h3>4. Fill Your Plate Half-Full of Vegetables & Fruits</h3>
<img src="images-e/food-guide-visual-en.webp" alt="Plate full of vegetables and fruits">
<p>Vegetables and fruits are loaded with nutrients and fiber, and they’re lower in calories than most other foods. Fill half of your plate with 1 to 2 servings of vegetables or fruits at each meal to fill up faster and stay full longer.</p>
<ul>
<li>Steam, stir-fry, roast, or boil your vegetables.</li>
<li>Include raw vegetables or a side salad if you don't want to cook.</li>
<li>Opt for fresh whole fruits like apples or bananas when you're in a hurry.</li>
</ul>
</div>
<!-- Processed Foods Section -->
<div class="section">
<h2>5. Don't Eat Processed Foods</h2>
<p>Limiting highly processed foods is essential to a healthy eating pattern. Processed foods often contain high levels of sodium, sugars, and unhealthy fats.</p>
<div class="card-container">
<div class="card">
<h3>Examples of Processed Foods</h3>
<ul>
<li>Sugary Drinks</li>
<li>Potato Chips & Pretzels</li>
<li>Ice Cream & Frozen Desserts</li>
<li>Processed Meats</li>
</ul>
</div>
<div class="card">
<h3>Benefits of Limiting Processed Foods</h3>
<ul>
<li>Reduced Sodium Intake</li>
<li>Lower Risk of Obesity & Diabetes</li>
<li>Improved Heart Health</li>
<li>Better Overall Nutrition</li>
</ul>
</div>
</div>
<p><strong>Tip:</strong> Replace sugary drinks with water, avoid processed meats, and choose whole, fresh foods as often as possible.</p>
</div>
</main>
</div>
</body>
</html>