-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
207 lines (196 loc) · 6.16 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Reciplay | Welcome</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="./css/style.css" />
<link rel="icon" type="image/x-icon" href="./images/favicon.ico" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css"
integrity="sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<nav>
<div class="container deepOrange pullRightLeft">
<div class="webname">
<h1>Reci<span class="highlight">play</span></h1>
</div>
<a href="index.html">Home</a>
<a href="./html/categories.html">Categories</a>
<a href="./html/cuisine.html">Cuisines</a>
</div>
</nav>
<div class="theme-container shadow-dark">
<img
id="theme-icon"
src="https://www.uplooder.net/img/image/2/addf703a24a12d030968858e0879b11e/moon.svg"
alt="ERR"
/>
</div>
</header>
<section id="tags">
<div class="contain">
<h1>Reciplay</h1>
<p>
<span>An</span>
<span>easy</span>
<span>way</span>
<span>to</span>
<span>prepare</span>
<span>meals</span>
<span>based on</span>
<span>the ingredients</span>
<span>You have</span>
<span>at hand,</span>
<span>just enter</span>
<span>the</span>
<span>ingredients</span>
<span>and get</span>
<span>thousands</span>
<span>of</span>
<span>delicioussss</span>
<span>recipes,</span>
<span>on just</span>
<span>click</span>
<span>of a</span>
<span>button!!</span>
</p>
</div>
</section>
<div class="page-heading waviy">
<!-- <h1>Search using ingredients</h1> -->
<h1>
<span style="--i: 1">S</span>
<span style="--i: 2">e</span>
<span style="--i: 3">a</span>
<span style="--i: 4">r</span>
<span style="--i: 5">c</span>
<span style="--i: 6">h</span>
<span style="--i: 7"> </span>
<span style="--i: 8">U</span>
<span style="--i: 9">s</span>
<span style="--i: 10">i</span>
<span style="--i: 11">n</span>
<span style="--i: 12">g</span>
<span style="--i: 13"> </span>
<span style="--i: 14">I</span>
<span style="--i: 15">n</span>
<span style="--i: 16">g</span>
<span style="--i: 17">r</span>
<span style="--i: 18">e</span>
<span style="--i: 19">d</span>
<span style="--i: 20">i</span>
<span style="--i: 21">e</span>
<span style="--i: 22">n</span>
<span style="--i: 23">t</span>
<span style="--i: 24">s</span>
</h1>
</div>
<form
class="form-inline container p-0 justify-content-center add"
onsubmit="return false;"
>
<!--form to take the ingredients-->
<input
id="ingredient"
class="form-control mr-sm-2"
placeholder="Add Ingredient"
/>
<button
type="reset"
class="btn btn-outline-success my-2 my-sm-0"
id="addingredient"
>
Add
</button>
</form>
<h4>Ingredient List</h4>
<ul class="list-group" id="ingredient-list"></ul>
<!-- list of ingredients to be displayed -->
<h6 class="instruction">Click on ingredient you want to remove</h6>
<div class="submit">
<button
class="btn btn-outline-success my-2 my-sm-0"
type="button"
id="submit-final"
onclick="refresh()"
>
Submit
</button>
</div>
<!--button to submit the ingredients enetered-->
<!-- Add Snackbar for better alerting -->
<div id="snackbar"></div>
<!--Search result -->
<div class="foodby"></div>
<div class="foodbyingre"></div>
<!--Popular picks -->
<div class="sp"><span class="pop">Our Random Picks</span></div>
<div class="popular"></div>
<!-- button for scroll to top -->
<button onclick="topFunction()" id="scroll-top-btn" title="Go to top">
<img
class="arrow-to-top"
src="https://img.icons8.com/sf-black/64/FFFFFF/collapse-arrow.png"
/>
</button>
<script src="./js/config.js" type="text/javascript"></script>
<script src="./js/index.js"></script>
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
</body>
<footer>
<div class="footer-content">
<h1>Reci<span class="highlight">play</span></h1>
<p>
An easy way to prepare meals based on the ingredients You have at hand, just enter the ingredients and get thousands of delicioussss recipes, on just click of a button!!
</p>
<ul class="socials">
<li>
<a href="#"><i class="fa fa-facebook"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-github"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-youtube"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-linkedin-square"></i></a>
</li>
</ul>
</div>
<div class="footer-bottom">
<p>copyright ©2022 <a href="index.html">Reciplay</a></p>
<div class="footer-menu">
<ul class="f-menu">
<li><a href="index.html">Home</a></li>
<li><a href="./html/categories.html">Categories</a></li>
<li><a href="./html/cuisine.html">Cuisines</a></li>
</ul>
</div>
</div>
</footer>
</html>