-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiet5.html
126 lines (114 loc) · 4.1 KB
/
diet5.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<style>
table, th, td {
border: 2px solid rgb(3, 126, 13);
color:white;
}
h2,strong{
color:rgb(255, 174, 0);
}
body {
margin: 0;
padding:0;
}
html {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
height: 100%;
background:rgb(46, 45, 45);
}
div{
margin:5%;
margin-left:35%;
}
</style>
</head>
<body>
<div class="dayplan">
<h2>Diet Plan 2: 1513 Calories</h2>
<strong>Breakfast: 387 Calories</strong>
<table>
<tbody>
<tr>
<th>Food Items</th>
<th>Calories</th>
</tr>
<tr>
<td>2 servings Baked Banana-Nut Oatmeal Cups</td>
<td>180</td>
</tr>
<tr>
<td>1 clementine</td>
<td>207</td>
</tr>
</tbody>
</table>
<br>
<strong>Morning Snack: 192 Calories</strong>
<table>
<tbody>
<tr>
<th>Food Items</th>
<th>Calories</th>
</tr>
<tr>
<td>1 oz. Cheddar cheese</td>
<td>47</td>
</tr>
<tr>
<td>1 hard-boiled egg</td>
<td>155</td>
</tr>
</tbody>
</table>
<br>
<strong>Lunch:325 Calories</strong>
<table>
<tbody>
<tr>
<th>Food Items</th>
<th>Calories</th>
</tr>
<tr>
<td>1 serving Chipotle-Lime Cauliflower Taco Bowls</td>
<td>344</td>
</tr>
</tbody>
</table>
<br>
<strong>Evening Snack: 95 Calories</strong>
<table>
<tbody>
<tr>
<th>Food Items</th>
<th>Calories</th>
</tr>
<tr>
<td>1 medium apple</td>
<td>95</td>
</tr>
</tbody>
</table>
<br>
<strong>Dinner: 495 Calories</strong>
<table>
<tbody>
<tr>
<th>Food Items</th>
<th>Calories</th>
</tr>
<tr>
<td>1 serving Zucchini-Chickpea Veggie Burgers with Tahini-Ranch Sauce</td>
<td>300</td>
</tr>
<tr>
<td>1 serving Oven Sweet-Potato Fries</td>
<td>195</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>