-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4thpage.html
84 lines (75 loc) · 2.52 KB
/
4thpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>You Choose loosing weight</title>
<style>
/* Styles for clarity */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: rgba(214, 208, 208, 0.8); /* Semi-transparent white background */
border-radius: 10px;
box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
h1, p {
text-align: center;
color: #333;
}
p {
margin-bottom: 20px;
line-height: 1.6;
}
/* Style for the generate button */
.button {
display: block;
margin: 0 auto;
padding: 12px 24px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
text-decoration: none; /* Remove default underline for links */
text-align: center;
}
.button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="container">
<h1> Diet 1 (weight loss)</h1>
<p>Breakfast:</p>
<li>1 cup of oatmeal cooked with water or almond milk, topped with sliced strawberries and a sprinkle of chia seeds
<li>1 small apple
<p>Mid-Morning Snack:</p>
<li>Carrot and cucumber sticks with hummus
<p>Lunch:</p>
<li>Mixed green salad with spinach, cherry tomatoes, cucumber, bell peppers, and a lemon-tahini dressing
<li>Quinoa salad with black beans, corn, diced avocado, and lime juice
<p>Afternoon Snack:</p>
<li>Greek yogurt with a handful of blueberries
<p>Dinner:</p>
<li>Baked tofu or tempeh with roasted vegetables (such as broccoli, cauliflower, and carrots) seasoned with herbs and spices
<li>Steamed or sautéed green beans with garlic and lemon juice
<p>Evening Snack:</p>
<li>1 small orange
<li>Handful of almonds
<!-- Back button -->
<a href="ldiet1.html" class="button">generate new diet</a>
</div>
</body>
</html>