-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
52 lines (46 loc) · 1.69 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
<!DOCTYPE html>
<html>
<title>Homepage</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Amatic+SC">
<style>
body, html {height: 100%}
body,h1,h2,h3,h4,h5,h6 {font-family: "Amatic SC"}
.menu {display: none}
.bgimg {
background-repeat: no-repeat;
background-size: cover;
background-image: url("images/food-bg.jpg");
min-height: 95%;
}
</style>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top w3-hide-small">
<div class="w3-bar w3-xlarge w3-black w3-opacity w3-hover-opacity-off" id="myNavbar">
<a href="index.php" class="w3-bar-item w3-button">HOME</a>
<a href="food.php" class="w3-bar-item w3-button">MENU</a>
<a href="food.php" class="w3-bar-item w3-button">PROMOTION</a>
<a href="#googleMap" class="w3-bar-item w3-button">CONTACT US</a>
</div>
</div>
<!-- Header with image -->
<header class="bgimg w3-display-container w3-grayscale-min" id="home">
<div class="w3-display-bottomleft w3-padding">
<span class="w3-tag w3-xlarge">Open from 10 am tO 12 pm</span>
</div>
<div class="w3-display-middle w3-center">
<span class="w3-text-white w3-hide-small" style="font-size:110px">THAI FOOD<br>DELIVERY</span>
<span class="w3-text-white w3-hide-large w3-hide-medium" style="font-size:60px"><b>THAI FOOD<br>DELIVERY</b></span>
<p><a href="food.php" class="w3-button w3-xxlarge w3-black">Let me see the menu</a></p>
</div>
</header>
<!-- Menu Container -->
<!-- About Container -->
<!-- Contact (with google maps) -->
<!-- Footer -->
<!-- Add Google Maps -->
</body>
</html>