-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathdiet2.html
127 lines (122 loc) · 5.46 KB
/
diet2.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
<!DOCTYPE html>
<html>
<head>
<link href="../css/clonediet.css" rel="stylesheet" type="text/css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="../js/bone.js"></script>
<script type="text/javascript" src="../js/api.js"></script>
<title>PERSONALIZED DIET CHART</title>
</head>
<body>
<div id="one">
<div class="vl"></div>
<div align="left" id="one1">
PERSONALIZED DIET CHART
</div>
<div id="one2" align="right">
<a href="../index.html">Home </a>
</div>
<div class="header_info">
<br><br><br><br>
Stress Fit creates personalized meal plans based on your food preferences, budget,
and schedule. Reach your diet and nutritional goals with our calorie calculator, weekly meal
plans, grocery lists and more.
<div>Create your meal plan right here in seconds.</div>
</div>
<form class="form" name="form" id="form">
<h1>Get Your Diet Plan</h1>
<ul>
<li>
<label>Name</label>
<input type="text" name="name" maxlength="100" placeholder="Enter your name">
<!-- <span>Enter your full name here</span> -->
<li>
<label>Age</label>
<input type="text" name="age" placeholder="Enter your age">
<!-- <span>Enter your age</span> -->
</li>
<li>
<label>Email</label>
<input type="text" name="email" maxlength="100" placeholder="Enter a valid email address">
<!-- <span>Enter a valid email address</span> -->
</li>
<li>
<label>Calories</label>
<input type="text" name="cal" id="cal" placeholder="Enter your prefered calorie intake(in cal.)">
<!-- <span>Enter your prefered calorie intake(in cal.)</span> -->
</li>
</li>
<li>
<label>Primary diet types</label>
<select class="diet">
<option id="diet" name="veg" value="vegetarian">Vegetarian diet plan</option>
<option id="diet" name="keto" value="ketogenic">Ketogenic diet plan</option>
<option id="diet" name="paleo" value="paleo">Paleo diet plan</option>
<option id="diet" name="whole" value="whole30">Whole 30 diet plan</option>
<option id="diet" name="primal" value="primal">Primal diet plan</option>
<option id="diet" name="pesc" value="pescetarian">Pescetarian diet plan</option>
<option id="diet" name="lcarb" value="lacto-vegetarian">Lacto Vegetarian diet plan</option>
<option id="diet" name="ocarb" value="ovo-vegetarian">Ovo Vegetarian diet plan</option>
<option id="diet" name="gluten" value="gluten free">Gluten free diet plan</option>
<option id="diet" name="vegan" value="vegan">Vegan diet plan</option>
</select>
<!-- <span>Choose your prefered diet type</span> -->
</li>
<li>
<label>Exclude</label>
<input type="text" name="exclude" maxlength="100" id="exclude" placeholder="Enter a food item you want to exclude">
<!-- <span>Enter a food item you want to exclude</span> -->
</li>
<li>
<label>About You</label>
<textarea name="bio" onkeyup="adjust_textarea(this)" placeholder="Say something about yourself"></textarea>
<!-- <span>Say something about yourself</span> -->
</li>
<li>
<button onclick="diet()">Get diet chart</button>
</li>
</ul>
</form>
<center>
<table border="2" style="background-color: rgba(255,255,255,0.6);border: 2px solid white;">
<thead>
<tr style="font-size: 20px;">
<th>Day</th>
<th>Breakfast</th>
<th>Lunch</th>
<th>Dinner</th>
<th>Calories</th>
<th>Proteins</th>
<th>Fats</th>
<th>Carbs</th>
</tr>
</thead>
<tbody>
<tr id="monday">
<td>Monday</td>
</tr>
<tr id="tuesday">
<td>Tuesday</td>
</tr>
<tr id="wednesday">
<td>Wednesday</td>
</tr>
<tr id="thursday">
<td>Thursday</td>
</tr>
<tr id="friday">
<td>Friday</td>
</tr>
<tr id="saturday">
<td>Saturday</td>
</tr>
<tr id="sunday">
<td>Sunday</td>
</tr>
</tbody>
</table>
</center>
<br><br><br><br>
</div>
</body>
</html>