-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
486 lines (445 loc) · 26.4 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
<!doctype html>
<html lang="en" ng-app="OmnifoodApp">
<head>
<meta charset="utf-8">
<!-- This meta tag is for query.css file to optimize our website based on user's display resolution-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- This meta tag is used by search engines. What we see as a description of the website under the actal link GOES RIGHT HERE!-->
<meta name="description" content="Omnifood is a premium food delivery service with a mission to bring affordable and healty meals to as many customers as possible">
<title>OmniFood App</title>
<!-- Google: normalize.css and click the link from github. Download -> save in the needed folder-->
<link rel="stylesheet" type="text/css" href="./vendors/css/normalize.css">
<!-- Google: ionicons download.-->
<link rel="stylesheet" type="text/css" href="./vendors/css/ionicons.min.css">
<!-- Fluid Grid (Google: ResponsiveGridSystem)-->
<link rel="stylesheet" type="text/css" href="./vendors/css/grid.css">
<!-- For Animation (https://daneden.github.io/animate.css/)-->
<link rel="stylesheet" type="text/css" href="./vendors/css/animate.css">
<!-- This is my CSS file-->
<link rel="stylesheet" type="text/css" href="./resources/css/style.css">
<!--Resizing based on the size of the device-->
<link rel="stylesheet" type="text/css" href="./resources/css/queries.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,300i,400" rel="stylesheet">
<!-- Custom logo of the website in a browser or a bookmark? https://realfavicongenerator.net/ -->
<link rel="apple-touch-icon" sizes="180x180" href="./resources/Favicon_Generator/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./resources/Favicon_Generator/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./resources/Favicon_Generator/favicon-16x16.png">
<link rel="manifest" href="./resources/Favicon_Generator/site.webmanifest">
<link rel="mask-icon" href="./resources/Favicon_Generator/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="./resources/Favicon_Generator/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="./resources/Favicon_Generator/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<!--Button to go to the top of the page! Appears when we pass certain point on the page. By default it's hidden. -->
<a class="btn-top-scroll js--scroll-top"> <i class="ion-arrow-up-c"></i> </a>
<header> <!-- By using headers we tell google about our website. however, it's a regular div tag-->
<nav class="">
<div class="row">
<img src="./resources/css/img/logo-white.png" alt="Omnifood Logo White Here" class="logo">
<!--Top Navigation Bar. Appears when we pass certain point on the page. By default it's hidden -->
<img src="./resources/css/img/logo.png" alt="Omnifood Logo Black Here" class="logo-black">
<ul class="main-nav js--main-nav">
<li><a href="#features">Food Delivery</a></li>
<li><a href="#steps">How It Works</a></li>
<li><a href="#cities">Our Cities</a></li>
<li><a href="#plans">Sign up</a></li>
</ul>
<!-- This is for mobile navigation -->
<!-- Awesome Note. if we dont specify href="" property in <a> tag, when we hover over the element, mouse wont change as we hover over a link -->
<a class="mobile-navigation-bar js--mobile-navigation-bar"> <i class="ion-navicon-round"></i> </a>
</div>
</nav>
<div class="hero-text-box">
<h1>Goodbye junk food.<br> Hello super healthy meals.</h1> <!--Each website should have only 1 h1 tag element (dont know why)-->
<a class="btn btn-full js--scroll-to-meal-plans" href="#">I'm hungry</a>
<a class="btn btn-ghost js--scroll-to-features" href="#">Show me more!</a>
</div>
</header>
<section class="section-features js--section-features" id="features">
<div class="row">
<h2>Get food fast — not fast food</h2> <!--Special HTML entity-->
<p class="long-copyright">
Hello, we are Omnifood, 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 it, we promise!
</p>
<div class="row js--animation-waypoint-1">
<div class="col span-1-of-4 box">
<i class="ion-ios7-infinite-outline icon-section"></i>
<h3>Up to 365 days/year</h3>
<p>Never cook again! We really 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="col span-1-of-4 box">
<i class="ion-ios7-stopwatch-outline icon-section"></i>
<h3>Ready in 20 minutes</h3>
<p>You're only twenty minutes away from your delicious and super healthy meals delivered right to your home. We work with the best chefs in each town to ensure that you're 100% happy.</p>
</div>
<div class="col span-1-of-4 box">
<i class="ion-pizza icon-section"></i>
<h3>100% Organic</h3>
<p>All our vegetables 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="col span-1-of-4 box">
<i class="ion-ios7-cart-outline icon-section"></i>
<h3>Order anything</h3>
<p>We don't limit your creativity, which means you can order whatever you feel like. You can also choose from our menu containing over 100 delicious meals. It's up to you! </p>
</div>
</div>
</div>
</section>
<section class="section-meals">
<ul class="meals-showcase clearfix">
<li>
<figure class="food-photo">
<img src="./resources/css/img/1.jpg" alt="Korean bibimbap with egg and vegetables">
</figure>
</li>
<li>
<figure class="food-photo">
<img src="./resources/css/img/2.jpg" alt="Simple italian pizza with cherry tomatoes">
</figure>
</li>
<li>
<figure class="food-photo">
<img src="./resources/css/img/3.jpg" alt="Chicken breast steak with vegetables ">
</figure>
</li>
<li>
<figure class="food-photo">
<img src="./resources/css/img/4.jpg" alt="Autumn pumpkin soup">
</figure>
</li>
</ul>
<ul class="meals-showcase clearfix">
<li>
<figure class="food-photo">
<img src="./resources/css/img/5.jpg" alt="Paleo beef steak with vegetables">
</figure>
</li>
<li>
<figure class="food-photo">
<img src="./resources/css/img/6.jpg" alt="Healthy baguette with egg and vegetables">
</figure>
</li>
<li>
<figure class="food-photo">
<img src="./resources/css/img/7.jpg" alt="Burger with cheddar and bacon">
</figure>
</li>
<li>
<figure class="food-photo">
<img src="./resources/css/img/8.jpg" alt="Granola with cherries and strawberries">
</figure>
</li>
</ul>
</section>
<section class="section-steps" id="steps">
<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 src="resources/css/img/app-iPhone.png" alt="Omnifood app on iPhone" class="app-screen js--animation-waypoint-2">
</div>
<div class="col span-1-of-2 steps-box">
<div class="work-steps">
<div>1</div>
<p>Choose the subscription plan that best fits your needs and sign up today.</p>
</div>
<div class="work-steps">
<div>2</div>
<p>Order your delicious meal using our mobile app or website. Or you can even call us!</p>
</div>
<div class="work-steps">
<div>3</div>
<p>Enjoy your meal after less than 20 minutes. See you the next time!</p>
</div>
<a href="https://www.apple.com/ios/app-store/" target="_blank" class="btn-app"><img src="./resources/css/img/download-app.svg" alt="App Store Button"></a>
<a href="https://play.google.com/store?hl=en" target="_blank" class="btn-app"><img src="./resources/css/img/download-app-android.png" alt="Play Store Button"></a>
</div>
</div>
</section>
<section class="section-cities" id="cities">
<div class="row">
<h2>We're currently in these cities</h2>
</div>
<div class="row js--animation-waypoint-3">
<div class="col span-1-of-4 box">
<img src="./resources/css/img/lisbon-3.jpg" alt="Lisbon">
<h3>Lisbon</h3>
<div class="city-feature">
<i class="ion-ios7-person icon-city"></i>
1600+ happy customers
</div>
<div class="city-feature">
<i class="ion-ios7-star icon-city"></i>
60+ top chefs
</div>
<div class="city-feature">
<i class="ion-social-twitter icon-city"></i>
<a href="https://twitter.com/?lang=en" target="_blank">@omnifood_lx</a>
</div>
</div>
<div class="col span-1-of-4 box">
<img src="./resources/css/img/san-francisco.jpg" alt="San Francisco">
<h3>San Francisco</h3>
<div class="city-feature">
<i class="ion-ios7-person icon-city"></i>
3700+ happy eaters
</div>
<div class="city-feature">
<i class="ion-ios7-star icon-city"></i>
160+ top chefs
</div>
<div class="city-feature">
<i class="ion-social-twitter icon-city"></i>
<a href="https://twitter.com/?lang=en" target="_blank">@omnifood_sf</a>
</div>
</div>
<div class="col span-1-of-4 box">
<img src="./resources/css/img/berlin.jpg" alt="Berlin">
<h3>Berlin</h3>
<div class="city-feature">
<i class="ion-ios7-person icon-city"></i>
2300+ happy eaters
</div>
<div class="city-feature">
<i class="ion-ios7-star icon-city"></i>
110+ top chefs
</div>
<div class="city-feature">
<i class="ion-social-twitter icon-city"></i>
<a href="https://twitter.com/?lang=en" target="_blank">@omnifood_berlin</a>
</div>
</div>
<div class="col span-1-of-4 box">
<img src="./resources/css/img/london.jpg" alt="London">
<h3>London</h3>
<div class="city-feature">
<i class="ion-ios7-person icon-city"></i>
1200+ happy eaters
</div>
<div class="city-feature">
<i class="ion-ios7-star icon-city"></i>
50+ top chefs
</div>
<div class="city-feature">
<i class="ion-social-twitter icon-city"></i>
<a href="https://twitter.com/?lang=en" target="_blank">@omnifood_london</a>
</div>
</div>
</div>
</section>
<section class="section-testimonials">
<div class="row">
<h2>Our customers can't live without us</h2>
</div>
<div class="row">
<div 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!
</blockquote>
<cite><img src="./resources/css/img/customer-1.jpg" alt="Customer1 Profile Picture">Alberto Duncan</cite>
</div>
<div 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!
</blockquote>
<cite><img src="./resources/css/img/customer-2.jpg" alt="Customer2 Profile Picture">Joana Silva</cite>
</div>
<div 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!
</blockquote>
<cite><img src="./resources/css/img/customer-3.jpg" alt="Customer3 Profile Picture">Milton Chapman</cite>
</div>
</div>
</section>
<section class="section-plans js--section-meal-plans" id="plans">
<div class="row">
<h2>Start eating healthy today</h2>
</div>
<div class="row">
<div class="col span-1-of-3">
<div class="plan-box js--animation-waypoint-4">
<div>
<h3>Premium</h3>
<p class="plan-price">$399 <span>per month</span></p>
<p class="plan-price-meal">That’s only $13.30 per meal</p>
</div>
<div>
<ul>
<li><i class="ion-ios7-checkmark-empty">1 meal every day</i></li>
<li><i class="ion-ios7-checkmark-empty">Order 24/7</i></li>
<li><i class="ion-ios7-checkmark-empty">Access to newest creations</i></li>
<li><i class="ion-ios7-checkmark-empty">Free delivery</i></li>
</ul>
</div>
<div>
<a href="#" class="btn btn-full">Sign up now!</a>
</div>
</div>
</div>
<div class="col span-1-of-3">
<div class="plan-box">
<div>
<h3>Pro</h3>
<p class="plan-price">149$ <span>per month</span></p>
<p class="plan-price-meal">That’s only $14.90 per meal</p>
</div>
<div>
<ul>
<li><i class="ion-ios7-checkmark-empty">1 meal 10 days/month</i></li>
<li><i class="ion-ios7-checkmark-empty">Order 24/7</i></li>
<li><i class="ion-ios7-checkmark-empty">Access to newest creations</i></li>
<li><i class="ion-ios7-checkmark-empty">Free delivery</i></li>
</ul>
</div>
<div>
<a href="#" class="btn btn-ghost">Sign up now!</a>
</div>
</div>
</div>
<div class="col span-1-of-3">
<div class="plan-box">
<div>
<h3>Starter</h3>
<p class="plan-price">$19 <span>per meal</span></p>
<p class="plan-price-meal"> </p> <!--Because it's empty, we need to fill it out with an empy space (special character)-->
</div>
<div>
<ul>
<li><i class="ion-ios7-checkmark-empty">1 meal</i></li>
<li><i class="ion-ios7-checkmark-empty">Order from 8 am to 12 pm</i></li>
<li><i class="ion-ios7-close-empty"></i></li>
<li><i class="ion-ios7-checkmark-empty">Free delivery</i></li>
</ul>
</div>
<div>
<a href="#" class="btn btn-ghost">Sign up now!</a>
</div>
</div>
</div>
</div>
</section>
<div class="map-box">
<!-- MAPS GOES HERE-->
<div class="map"></div>
<div class="form-box">
<div class="row">
<h2>We're happy to hear from you</h2>
</div>
<div class="row">
<!--IMPORTANT!
Method: when the form us submitted, what do u want to do with the data? Remember ajax call? Get and Post? this is it!
Action: when we actually submit it, JS function should be fired and take care of the data and call .php file to take care of the request-->
<form method="POST" action="#" class="contact-form">
<div class="row">
<div class="col span-1-of-3">
<label for="name">Name</label> <!-- FOR will connect label with a proper text field! id goest into for "" marks-->
</div>
<div class="col span-2-of-3"> <!--Also note span! 2 of 3-->
<!--Type: is it a button/text/multChoice?
Name: will be used to send this form (??????????????)
id: same as class but unique
placeholder: pre-set value
required: wont allow to submit form if this field was not filled out-->
<input type="text" name="name" id="name" placeholder="Your Name" required>
</div>
</div>
<div class="row">
<div class="col span-1-of-3">
<label for="email">Email</label>
</div>
<div class="col span-2-of-3">
<input type="email" name="email" id="email" placeholder="Your Email" required>
</div>
</div>
<div class="row">
<div class="col span-1-of-3">
<label for="find-us">How Did You Find Us?</label>
</div>
<div class="col span-2-of-3">
<select name="find-us" id="find-us">
<option value="friends" selected>Friends</option> <!--Selected if DEFAULT VALUE-->
<option value="google">Google</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" ng-controller="angular--span-controller"> <!--angular span controller-->
<input type="checkbox" name="checkbox" id="checkbox" checked ng-click="toggleMessage($event)"> <span ng-cloak>{{ message }}</span>
</div>
</div>
<div class="row">
<div class="col span-1-of-3">
<label>Drop us a line!</label>
</div>
<div class="col span-2-of-3">
<textarea name="mesage" id="mesage"></textarea>
</div>
</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 it!">
</div>
</div>
</form>
</div>
</div>
</div>
<footer>
<div class="row">
<div class="col span-1-of-2">
<ul class="footer-navigation">
<li><a href="#">About us</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Press</a></li>
<li><a href="https://www.apple.com/ios/app-store/" target="_blank">iOS App</a></li>
<li><a href="https://play.google.com/store?hl=en" target="_blank">Android App</a></li>
</ul>
</div>
<div class="col span-1-of-2">
<ul class="social-links">
<li> <a href="https://www.facebook.com/" target="_blank"> <i class="ion-social-facebook"></i> </a> </li>
<li> <a href="https://twitter.com/?lang=en" target="_blank"> <i class="ion-social-twitter"></i> </a> </li>
<li> <a href="https://plus.google.com/" target="_blank"> <i class="ion-social-googleplus"></i> </a> </li>
<li> <a href="https://www.instagram.com/?hl=en" target="_blank"> <i class="ion-social-instagram"></i> </a> </li>
</ul>
</div>
</div>
<div class="row">
<p>
Copyright © 2018 by Omnifood. All right reserved.
</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/selectivizr/1.0.2/selectivizr-min.js"></script>
<script src="./vendors/js/jquery.waypoints.min.js"></script> <!--File for sticky navigation bar-->
<script src="http://maps.google.com/maps/api/js"></script> <!--File below builds upon this OFFICIAL GOOGLE MAPS API-->
<script src="./vendors/js/gmaps.js"></script> <!--File for MAPS-->
<script src="./vendors/js/angular.min.js"></script> <!--Angular!-->
<script src="./resources/js/jQueryScript.js"></script> <!--File where I write my jQuery-->
<script src="./resources/js/angular/angularScript.js"></script> <!--File where I write my Angular-->
</body>
<!--Steps before launching any website:
1: compress images. (saves a lot of space and speeds-up loading process for users with low speed connections. https://imagecompressor.com/
2: compress css and js code. Remove spaces, comments and all other things. Also saves space and help tp load a page much faster https://cssminifier.com/
3: validate html. Make sure there are no errors (warnings are okay) https://validator.w3.org/
4: obtain domain and upload your project. Done!
-->
</html>