-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
592 lines (502 loc) · 23 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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
<!--lets create boiler-plate for our website-->
<!DOCTYPE html>
<html>
<head>
<title>My food project</title>
<script src = "resources/js/jquery.js"></script> <!--this file is to include jquery-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--responsive viewport from W3 schools website-->
<!-- we have to link our css file to our html file with help of : link tag in it we have to give complete directory(path) of file in href property-->
<link rel="stylesheet" href="resources/css/style.css" >
<link rel="stylesheet" href="vendors/css/queries.css" >
<link rel="stylesheet" href="resources/css/queries.css" >
<!--we have to get 'normalise' file from internet and use it for our convenience : the elements become compatible and consistent for all browsers available in the market ie: nit functioning of webpage on all browsers -->
<link rel="stylesheet" href="vendors/css/normalize.css">
<link rel="stylesheet" href="vendors/css/grid.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" /> <!-- for animation from github//michalsnik/aos -->
<!-- add font to the page -->
<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=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
</head>
<body>
<!-- this is code is for pop-up window to check jquery is included
<script>//1 from google using internet
if(jQuery == "undefined"){ // 'jQyery' variable is defined in Jquery and we use this method to check if jquery is installed in web
alert("jquery not included");
}
else{
alert ("jQuery is included");
}
</script>
-->
<!-- header tag works as div , but tells browser that whatever is its content must be placed at the top -->
<header>
<link rel="stylesheet" href="vendors/css/grid.css">
<nav>
<div class="row">
<img class="logo" data-aos="slide-down" data-aos-duration="2000" src="resources/img/logo.jpeg" alt="logo-img">
<ul data-aos="zoom-out" data-aos-duration="2000" class="main-nav">
<li><a href="#feature">Food delivery</a></li>
<li><a href="#hiw">How it works</a></li>
<li><a href="#city">Which City</a></li>
<li><a href="#signup">Sign up</a></li>
</ul>
</div>
</nav>
<div class="hero-text-box">
<h1>Goodbye junk food <br>Hello healthy food<br></h1>
<!-- href="#" keeps the user on the same page even clicking the link -->
<a data-aos="zoom-in" data-aos-duration="2000" class="btn btn-full" href="#plans">I am hungry</a> <!--btn class is common for both and btnifull and btn-ghost are different for both links-->
<a data-aos="slide-left" data-aos-duration="2000" class="btn btn-ghost" href="#feature"> SHOW ME MORE </a>
</div>
</header>
<!-- *********************** Feature section ********************* -->
<!-- <section class="section-features" id="feature">
<div class="row " >
<h2>Get your Food fast — Not Fast food </h2>
<p class="long-copy">
Hello, we're Doorstep foods, your new premium food delivery service. We know you are always busy.
No time for cooking. So let us take care of that, we're really good at your promises !!
</p>
</div>
<div class="row">
<div class="col span_1_of_4box">
<ion-icon class="icon-big" name="infinite-outline"></ion-icon>
<h3>Up to 365 days/yr </h3>
<p>Never cook again! We realy mean that. Our subscription plans include up to 365
days/year coverage. You can also choose to order more flexibly if that's your style. </p>
</div>
</div>
<div class="row">
<div class="col span_1_of_4box">
<ion-icon class="icon-big" name="stopwatch-outline"></ion-icon>
<h3>Ready in 20 minutes</h3>
<p>You're only twenty-minutes away from your healthy and delicious meal devlivered
right to your door. We work with the best chefs in each town to ensure that your're 100% happy. </p>
</div>
</div>
<div class="row">
<div class="col span_1_of_4box">
<ion-icon class="icon-big" name="fast-food-outline"></ion-icon>
<h3>It's 100% Organic </h3>
<p>All our vegie's are fresh, organic and local.Animals are raised without added
hormones or antibiotics. Good for your health, the environment, and it also tastes better! </p>
</div>
</div>
<div class="row">
<div class="col span_1_of_4 box">
<ion-icon class="icon-big" name="cart-outline"></ion-icon>
<h3>Order anything</h3>
<p>We don't limit your creativity, which means you can order what you feel like. You
can also choose from our menu containing upto 100 delicious meals.It's up to you !
</p>
</div>
</div>
</section> -->
<section class="section-features" id="feature">
<div class="row">
<h2>Get your Food fast — Not Fast food </h2>
<p class="long-copy">
Hello, we're Doorstep foods, your new premium food delivery service. We know you are always busy.
No time for cooking. So let us take care of that, we're really good at your promises !!
</p>
</div>
<div class="row">
<div class="col span-1-of-4 box">
<ion-icon class="icon-big" name="infinite-outline"></ion-icon>
<h3>Up to 365 days/yr </h3>
<p>Never cook again! We realy mean that. Our subscription plans include up to 365
days/year coverage. You can also choose to order more flexibly if that's your style. </p>
</div>
<div class="row">
<div class="col span-1-of-4 box">
<ion-icon class="icon-big" name="stopwatch-outline"></ion-icon>
<h3>Ready in 20 minutes</h3>
<p>You're only twenty-minutes away from your healthy and delicious meal devlivered
right to your door. We work with the best chefs in each town to ensure that your're 100% happy. </p>
</div>
<div class="row">
<div class="col span-1-of-4 box">
<ion-icon class="icon-big" name="fast-food-outline"></ion-icon>
<h3>It's 100% Organic </h3>
<p>All our vegie's are fresh, organic and local.Animals are raised without added
hormones or antibiotics. Good for your health, the environment, and it also tastes better! </p>
</div>
<div class="row">
<div class="col span-1-of-4 box">
<ion-icon class="icon-big" name="cart-outline"></ion-icon>
<h3>Order anything</h3>
<p>We don't limit your creativity, which means you can order what you feel like. You
can also choose from our menu containing upto 100 delicious meals.It's up to you !
</p>
</div>
</div>
</div>
</section>
<!-- End of feature section -->
<!-- -->
<section data-aos="zoom-out" data-aos-duration="2000" class="section-meals" data-aos="fade-in" data-aos-duration="2000">
<ul class="meals-showcase clear-fix ">
<li>
<figure class="meal-photo">
<img src="resources/img/1.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="resources/img/2.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="resources/img/3.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="resources/img/4.jpg" alt="food-image">
</figure>
</li>
</ul>
<ul class="meals-showcase clear-fix">
<li>
<figure class="meal-photo">
<img src="resources/img/5.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="resources/img/6.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="resources/img/7.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="resources/img/8.jpg" alt="food-image">
</figure>
</li>
</ul>
</section>
<!-- *************** Work Section ****************** -->
<section class="section-steps" id="hiw" data-aos="fade-in" data-aos-duration="2000">
<div class="row">
<h2>How it works — Simple as 1,2,3</h2>
</div>
<div class="row">
<div class="col span-1-of-2 steps-box">
<img data-aos="slide-left" data-aos-duration="1000" src="resources/img/app-iPhone.png" alt="phone-img" class="app-screen">
</div>
<div class="col span-1-of-2 steps-box">
<div class="work-step">
<div>1</div>
<p>Choose plan that fits best for your need and sign-up today</p>
</div>
<div class="work-step">
<div>2</div>
<p>Pay for the plan and download the app </p>
</div>
<div class="work-step">
<div>3</div>
<p>You are done start ordering !!!</p>
</div>
<a href="#" class="btn-app"><img src="resources/img/download-app-android.png" alt="app-store"></img></a>
<a href="#" class="btn-app"><img src="resources/img/download-app.svg" alt="app-store-logo"></img></a>
</div>
</div>
</section>
<!-- *********************** Cities Section *******************8 -->
<section class="section-cities" id="city" data-aos="fade-in" data-aos-duration="2000">
<div class="row">
<h2>We are currently in these cities</h2>
</div>
<div class="row" >
<div data-aos="slide-right" data-aos-duration="2000" class="col span-1-of-4 box">
<img data-aos="slide-right" data-aos-duration="2000" src="resources/img/lisbon-3.jpg" alt="lisbon">
<h3>Lisbon</h3>
<div class="city-feature">
<ion-icon class="icon-small" name="person-circle-outline"></ion-icon>
1600+ Happy Eaters
</div>
<div class="city-feature">
<ion-icon class="icon-small" name="star-outline"></ion-icon>
50+ Chefs
</div>
<div class="city-feature">
<ion-icon class="icon-small" name="logo-twitter"></ion-icon>
<a href="#">@Omnifood_li</a>
</div>
</div>
<div class="row" >
<div data-aos="slide-right" data-aos-duration="2000" class="col span-1-of-4 box">
<img data-aos="slide-right" data-aos-duration="2000" src="resources/img/berlin.jpg" alt="berlin">
<h3>Berlin</h3>
<div class="city-feature">
<ion-icon class="icon-small" name="person-circle-outline"></ion-icon>
1400+ Happy Eaters
</div>
<div class="city-feature">
<ion-icon class="icon-small" name="star-outline"></ion-icon>
70+ Chefs
</div>
<div class="city-feature">
<ion-icon class="icon-small" name="logo-twitter"></ion-icon>
<a href="#">@Omnifood_br</a>
</div>
</div>
<div class="row" >
<div data-aos="slide-left" data-aos-duration="2000" class="col span-1-of-4 box">
<img data-aos="slide-left" data-aos-duration="2000" src="resources/img/san-francisco.jpg" alt="san-francisco">
<h3>San-francisco</h3>
<div class="city-feature">
<ion-icon class="icon-small" name="person-circle-outline"></ion-icon>
1800+ Happy Eaters
</div>
<div class="city-feature">
<ion-icon class="icon-small" name="star-outline"></ion-icon>
50+ Chefs
</div>
<div class="city-feature">
<ion-icon class="icon-small" name="logo-twitter"></ion-icon>
<a href="#">@Omnifood_sf</a>
</div>
</div>
<div class="row" >
<div data-aos="slide-left" data-aos-duration="2000" class="col span-1-of-4 box">
<img data-aos="slide-left" data-aos-duration="2000" src="resources/img/london.jpg" alt="london">
<h3>London</h3>
<div class="city-feature">
<ion-icon class="icon-small" name="person-circle-outline"></ion-icon>
1800+ Happy Eaters
</div>
<div class="city-feature">
<ion-icon class="icon-small" name="star-outline"></ion-icon>
80+ Chefs
</div>
<div class="city-feature">
<ion-icon class="icon-small" name="logo-twitter"></ion-icon>
<a href="#">@Omnifood_ln</a>
</div>
</div>
</div>
</section>
<!-- ********* Testimonial section ********* -->
<section class="section-testimonials" data-aos="fade-in" data-aos-duration="2000">
<div class="row">
<h2>Our costumer can't live without us</h2>
</div>
<div class="row">
<div data-aos="zoom-in" data-aos-duration="2000" class="col span-1-of-3">
<blockquote>
Omnifood is just awesome! I just launched a startup which leaves me with no time for cooking, so Omnifood is a life-saver.
Now that I got used to it, I couldn't live without my daily meals!
<cite ><img src="resources/img/customer-1.jpg " alt="cust-1">Alberto Duncan</cite>
</blockquote>
</div>
<div data-aos="zoom-in" data-aos-duration="2000" class="col span-1-of-3">
<blockquote>
Inexpensive, healthy and great-tasting meals, delivered right to my home.
We have lots of food delivery here in Lisbon, but no one comes even close to Omifood.
Me and my family are so in love!
<cite><img src="resources/img/customer-2.jpg " alt="cust-2">Joana Silva</cite>
</blockquote>
</div>
<div data-aos="zoom-in" data-aos-duration="2000" class="col span-1-of-3">
<blockquote>
I was looking for a quick and easy food delivery service in San Franciso.
I tried a lot of them and ended up with Omnifood.
Best food delivery service in the Bay Area. Keep up the great work!
<cite><img src="resources/img/customer-3.jpg" alt="cust-1">Milton Chapman</cite>
</blockquote>
</div>
</div>
</section>
<!-- *********** signup section ************ -->
<section class="section-plans" id="plans" data-aos="fade-in" data-aos-duration="2000">
<div class="row">
<h2>Start eating healthy today</h2>
</div>
<div class="row">
<div class="col span-1-of-3">
<div data-aos="zoom-in" data-aos-duration="2000" class="plan-box">
<div>
<h3>Premium</h3>
<p class="plan-price">$399 / month</p>
<p class="plan-price-meal">that's only 13.905$ per meal</p>
</div>
<div>
<ul>
<li><ion-icon class="icon-small" name="checkmark-outline"></ion-icon>1 meal everyday</li>
<li><ion-icon class="icon-small" name="checkmark-outline"></ion-icon>Order 24*7</li>
<li><ion-icon class="icon-small" name="checkmark-outline"></ion-icon>Access to newest creations</li>
<li><ion-icon class="icon-small" name="checkmark-outline"></ion-icon>Free delivery</li>
</ul>
</div>
<div>
<a href="#" class="btn btn-full">Sign up</a>
</div>
</div>
</div>
<div data-aos="slide-right" data-aos-duration="2000" class="col span-1-of-3">
<div class="plan-box">
<div>
<h3>Pro</h3>
<p class="plan-price">$199 <span>/ month</span></p>
<p class="plan-price-meal">that's only 10.05$ per meal</p>
</div>
<div>
<ul>
<li><ion-icon class="icon-small" name="checkmark-outline"></ion-icon>1 meal in 9 days</li>
<li><ion-icon class="icon-small" name="checkmark-outline"></ion-icon>Order 24*7</li>
<li><ion-icon class="icon-small" name="checkmark-outline"></ion-icon>Access to newest creations</li>
<li><ion-icon class="icon-small" name="checkmark-outline"></ion-icon>Free delivery</li>
</ul>
</div>
<div>
<a href="#" class="btn btn-ghost">Sign up</a>
</div>
</div>
</div>
<div data-aos="slide-right" data-aos-duration="2000" class="col span-1-of-3">
<div class="plan-box">
<div>
<h3>Starter</h3>
<p class="plan-price">$39 <span>/ meal</span></p>
<p class="plan-price-meal"> </p> <!--  is used to add space-->
</div>
<div>
<ul>
<li><ion-icon class="icon-small" name="checkmark-outline"></ion-icon>1 meal in 2 weeks</li>
<li><ion-icon class="icon-small" name="checkmark-outline"></ion-icon>Order 24*7</li>
<li><ion-icon class="icon-small" name="close-outline"></ion-icon></li>
<li><ion-icon class="icon-small" name="checkmark-outline"></ion-icon>Free delivery</li>
</ul>
</div>
<div>
<a href="#" class="btn btn-ghost">Sign up</a>
</div>
</div>
</div>
</div>
</section>
<!-- ****************** Contact section *************** -->
<section class="section-form" id="signup" data-aos="fade-in" data-aos-duration="2000">
<div class="row">
<h2>We are happy to hear from you</h2>
</div>
<div class="row">
<form action="#" method="POST" class="contact-form">
<div class="row">
<div class="col span-1-of-3">
<label>Name</label>
</div>
<div class="col span-2-of-3">
<input type="text" name="name" id="name" placeholder="Your name" required>
</div>
</div>
<div class="row">
<div class="col span-1-of-3">
<label>Email</label>
</div>
<div class="col span-2-of-3">
<input type="text" name="name" id="name" placeholder="Your name" required>
</div>
</div>
<div class="row">
<div class="col span-1-of-3">
<label>How did you find us?</label>
</div>
<div class="col span-2-of-3">
<select name="find-us" id="find-us">
<option value="freinds">Friends</option>
<option value="search">Search engine</option>
<option value="ad">Advertisement</option>
<option value="other">Other</option>
</select>
</div>
</div>
<div class="row">
<div class="col span-1-of-3">
<label>Newsletter?</label>
</div>
<div class="col span-2-of-3">
<input type="checkbox" name="news" id="news" checked>
</div>
</div>
<div class="row">
<div class="col span-1-of-3">
<label>drop a line</label>
</div>
<div class="col span-2-of-3">
<textarea name="text" id="ta" cols="30" rows="10"></textarea>
</div>
<div class="row">
<div class="col span-1-of-3">
<label> </label>
</div>
<div class="col span-2-of-3">
<input type="submit" value="Send-me">
</div>
</form>
</div>
</section>
<!-- ****************** Footer Section ******************* -->
<footer>
<div class="row">
<div class="col span-1-of-2">
<ul class="footer-nav">
<li><a href="#">About us</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">IOS app</a></li>
<li><a href="#">Android app</a></li>
</ul>
</div>
<div class="col span-1-of-2">
<ul class="social-links">
<li><ion-icon data-aos="zoom-in" data-aos-duration="2000" class="gg" name="logo-google"></ion-icon></li>
<li><ion-icon data-aos="slide-right" data-aos-duration="2300" class="tw" name="logo-twitter"></ion-icon></li>
<li><ion-icon data-aos="slide-right" data-aos-duration="3000" class="insta" name="logo-instagram"></ion-icon></li>
<li><ion-icon data-aos="slide-right" data-aos-duration="4000" class="fb" name="logo-facebook"></ion></li>
</ul>
</div>
</div>
<div class="row">
<p>Copyright © 2015 by omnifood.All rights reserved.</p>
</div>
</footer>
<!-- to add scrolling effect -->
<script>
$(document).ready(function(){
// Add smooth scrolling to all links
$("a").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
});
</script>
<!-- -->
<!-- from github.com//michalsnik/aos for animation -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</body>
</html>