-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
403 lines (313 loc) · 12.8 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
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/styles.css" />
<script src="https://kit.fontawesome.com/b862bb0d81.js"></script>
<script src="https://kit.fontawesome.com/0f05b0729d.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kaisei+HarunoUmi:wght@700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<title>Zomato Clone</title>
</head>
<body>
<header>
<nav>
<div class="nav-item app">
<i class="fas fa-door-open"></i>Get the App
</div>
<div class="container">
<div class="nav-item">Login</div>
<div class="nav-item">SignUp</div>
</div>
</nav>
<div class="content">
<img src="./assets/images/logo.png" alt="Zomato Logo" class="logo" />
<h1>Discover the best food & drinks in
<b>Thrissur, Kerala</b></h1>
<div class="search-box">
<div class="select">
<i class="fas fa-map-marker-alt"></i>
<select name="" id="">
<option value="">Thrissur, Kerala</option>
<option value="">Trivandrum, Kerala</option>
<option value="">Palakkad, Kerala</option>
<option value="">Kochi, Kerala</option>
<option value="">Pathanamthitta, Kerala</option>
<option value="">Calicut, Kerala</option>
<option value="">Kasaragod, Kerala</option>
<option value="">Kollam, Kerala</option>
<option value="">Wayanadu, Kerala</option>
<option value="">Kannur, Kerala</option>
<option value="">Kottayam, Kerala</option>
<option value="">Alappuzha, Kerala</option>
<option value="">Ernakulam,Kerala</option>
<option value="">Idukki, Kerala</option>
<option value="">Malappuram, Kerala</option>
<option value="">Kozhikode, Kerala</option>
</select>
</div>
<div class="seperator">|</div>
<div class="input">
<i class="fas fa search"></i>
<input type="text" placeholder="Search for restaurant, cuisine or a dish" />
</div>
</div>
</div>
</div>
</header>
<section class="nearby">
<div class="container">
<h3>Popular localities in and around <b>Thrissur, Kerala</b></h3>
<div class="box">
<div>Thrissur, Kerala (15 Places)</div>
<div>
<i class="fas fa-chevron-right"></i>
</div>
</div>
</div>
</section>
<section class="app">
<div class="container">
<img src="./assets/images/app.png" alt="Dowload the Zomato App" />
<div class="form">
<h3>Get the Zomato App</h3>
<small>We'll send you a link, open it on your phone to download the App</small>
<div class="radio">
<div>
<input type="radio" id="email" name="radio-group" checked/>
<label for="email">Email</label>
</div>
<div>
<input type="radio" id="phone" name="radio-group" checked/>
<label for="phone">Phone</label>
</div>
<div class="input">
<input type="email" placeholder="Email" />
<button>Share</button>
</div>
<div class="download">
Download app from
<img src="./assets/images/appStore.png" alt="Android playStore" />
<img src="./assets/images/playStore.png" alt="iOS App Store" />
</div>
</div>
</div>
</div>
</section>
<section class="options">
<div class="container">
<h2>Explore other options for you here</h2>
<div>
<h3>Popular cuisines near me</h3>
<ul>
<li>
<a href="#">American food near me</a>
</li>
<li>
<a href="#">BBQ food near me</a>
</li>
<li>
<a href="#">Bar food near me</a>
</li>
<li>
<a href="#">Burger food near me</a>
</li>
<li>
<a href="#">Cafe food near me</a>
</li>
<li>
<a href="#">Chinese food near me</a>
</li>
<li>
<a href="#">Coffee and Tea food near me</a>
</li>
<li>
<a href="#">Dessert food near me</a>
</li>
<li>
<a href="#">German food near me</a>
</li>
<li>
<a href="#">Greek food near me</a>
</li>
<li>
<a href="#">Ice-Cream food near me</a>
</li>
<li>
<a href="#">Italian food near me</a>
</li>
<li>
<a href="#">Japanese food near me</a>
</li>
<li>
<a href="#">Mexican food near me</a>
</li>
<li>
<a href="#">Pizza food near me</a>
</li>
<li>
<a href="#">Sandwich food near me</a>
</li>
<li>
<a href="#">Sea food near me</a>
</li>
<li>
<a href="#">Steak food near me</a>
</li>
<li>
<a href="#">Sushi food near me</a>
</li>
<li>
<a href="#">Tea food near me</a>
</li>
</ul>
<br>
<h3>Popular restaurant types near me</h3>
<br>
<ul>
<li>
<a href="#">Bakeries near me</a>
</li>
<li>
<a href="#">Bars around me</a>
</li>
<li>
<a href="#">Cafes near me</a>
</li>
<li>
<a href="#">Casual Dining near me</a>
</li>
<li>
<a href="#">Dessert shops near me</a>
</li>
<li>
<a href="#">Chinese food near me</a>
</li>
<li>
<a href="#">Fast casual near me</a>
</li>
<li>
<a href="#">Fast food near me</a>
</li>
<li>
<a href="#">Pizzerias near me</a>
</li>
<li>
<a href="#">Quick Bytes near me</a>
</li>
<li>
<a href="#">Sandwich shops near me</a>
</li>
<li>
<a href="#">Taquerias near me</a>
</li>
</ul>
</div>
</div>
</section>
<footer>
<div class="zomatoandflags">
<div class="zomato">ZOMATO</div>
<div class="flags">
<div class="usa">
<a href="#">
<img class="usaflag" src="./assets/images/united-states.png"> USA
<i class="fas fa-angle-down"></i>
</a>
</div>
<div class="english">
<a href="#">
<i class="fas fa-globe"></i> English
<i class="fas fa-angle-down"></i>
</a>
</div>
</div>
</div>
<div class="footer">
<div class="column1">
<ol>
<h4>COMPANIES</h4>
<a href="#">
<li>Who we are</li>
<li>Blog</li>
<li>Carreers</li>
<li>Report Fraud</li>
<li>Contact</li>
<li>Investor Relations</li>
</ol>
</a>
</div>
<div class="column2">
<ol>
<h4>FOR FOODIES</h4>
<a href="#">
<li>Code of Conduct</li>
<li>Community</li>
<li>Blogger help</li>
<li>Mobile Apps</li>
</ol>
</a>
</div>
<div class="column3">
<ol>
<h4>FOR RESTAURANTS</h4>
<a href="#">
<li>Add Restaurant</li>
<li>Business App</li>
<li>Restaurent Widgets</li>
<li>Products for business</li>
</ol>
</a>
</div>
<div class="column4">
<ol>
<h4>FOR YOU</h4>
<a href="#">
<li>Privacy</li>
<li>Terms</li>
<li>Security</li>
<li>Sitemap</li>
</ol>
</a>
</div>
<div class="column5">
<ol>
<h4>SOCIAL LINKS</h4>
<a href="https://twitter.com/alfredfrancis68">
<div class="social-links">
<div class="sm-icons">
<a href="https://www.facebook.com/profile.php?id=100015651250448"> <i class="fab fa-facebook"></i></a>
<a href="https://twitter.com/alfredfrancis68"><i class="fab fa-twitter-square"></i></a>
<a href="https://www.instagram.com/_alfred_francis_/"> <i class="fab fa-instagram-square"></i></a>
</div>
<div class="appstore">
<br>
<img class="appstore-image" src="./assets/images/appStore.png" alt="Download zomato from appstore">
</div>
<div class="playstore">
<br>
<img class="playstore-image" src="./assets/images/playStore.png" alt="Download zomato from playstore">
</div>
</div>
</a>
</ol>
</div>
</div>
<div class="bottom-message">
<h2>By continuing past this page, you agree to our Terms of Service, Cookie Policy, Privacy Policy and Content Policies. All trademarks are properties of their respective owners. 2008-2021 © Zomato™ Ltd. All rights reserved.</h2>
<br>
<br>
<p>Done with <img src="./assets/images/iconmonstr-heart-thin-64.png" alt=""> by<a href="https://www.buymeacoffee.com/iamAlfred"> ME </a> </p>
</div>
</footer>
</body>
</html>