-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
58 lines (48 loc) · 1.78 KB
/
index.php
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Cuisine Catering | Home Page</title>
<?php include_once("php/templates/head.php"); ?>
</head>
<body>
<?php include_once("php/templates/outdated_browser.php"); ?>
<?php include_once("php/templates/header.php"); ?>
<div id="showcase">
<img class="small-screen" src="img/wok.jpg" alt="A wok on a hob">
<video class="large-screen" oncontextmenu="return false;" autoplay loop>
<source src="videos/cooking_vegetables.mp4" type="video/mp4">
</video>
</div>
<span class="button get-started-button">
<a href="order.php">Pick your cuisine</a>
</span>
<div class="parallax-container">
<section class="container">
<i class="fas fa-utensils fa-7x"></i>
<section class="section-text">
<h3 class="title-cards">Pick your cuisine</h3>
<p>Pick your preferred cuisine from our wide variety of available choices</p>
</section>
</section>
<div class="parallax" id="image1"></div>
<section class="container">
<i class="fas fa-users fa-7x"></i>
<section class="section-text">
<h3 class="title-cards">Pick your group size</h3>
<p>We cater events from groups as low as 5 people, up to gatherings of 500</p>
</section>
</section>
<div class="parallax" id="image2"></div>
<section class="container">
<i class="fas fa-couch fa-7x"></i>
<section class="section-text">
<h3 class="title-cards">Enjoy your food with no hassle</h3>
<p>Once you place your order, you can rest and leave everything up to us!</p>
</section>
</section>
</div>
<?php include("php/templates/footer.php") ?>
<?php include_once("php/templates/scripts.php"); ?>
</body>
</html>