-
Notifications
You must be signed in to change notification settings - Fork 3
/
aboutus.php
138 lines (119 loc) · 3.55 KB
/
aboutus.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
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
<?php
session_start();
require_once("dbconnect.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- <link rel="stylesheet" href="style.css"> -->
</head>
<body>
<nav>
<div class=" logo">Quickeats</div>
<div class="nav-items">
<a href="Home.php">HOME</a>
<a href="signup.php">SIGNUP</a>
<a href="login.php">LOGIN</a>
</div>
</nav>
<section class= "front">
<div class="front-container">
<div class= "column-left">
<h1>ABOUT US</h1>
<p>
We are the future of food delivery, built for speed and your convenience.
Say goodbye to long wait times and hello to hot, delicious food delivered
straight to your door within minutes. With our innovative platform and dedicated
network of riders, we guarantee lightning-fast delivery so you can satisfy your
cravings in no time. Plus, our seamless cash-on-delivery system allows you to pay
for your order only when it arrives, ensuring a stress-free experience. Whether you're
craving a quick bite or a multi-course feast, we've got you covered with a wide range of
restaurants and cuisines to choose from. So next time hunger hits, don't wait, order from our
website and experience the fastest and most convenient food delivery service in town.
</p>
<!-- <button onclick="window.location.href='signup.php'">Let's Start</button> -->
</div>
</div>
</section>
<style>
*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
nav {
height: 80px;
background: #265073;
display:flex ;
justify-content: space-between;
align-items: center;
padding: 0rem calc((100vw -1300px) / 2);
}
.logo {
color: #ECF4D6;
font-size: 2rem;
font-weight: bold;
font-style: italic;
padding: 0 2rem;
}
nav a {
text-decoration: none;
font-size: 1.3rem;
color: #9AD0C2;
padding: 0 1.5rem;
}
nav a:hover {
color: #ECF4D6;
}
.front {
background: #ECF4D6;
}
.front-container {
margin-left: 2rem;
display:flex ;
grid-template-columns: 1fr 1fr ;
height:95vh ;
padding: 3rem calc((100vw -1300px) / 2);
justify-content:center ;
align-items: center ;
}
.column-left {
display:flex ;
flex-direction:column ;
justify-content:center ;
align-items: center ;
color:#265073 ;
padding: 0rem 4rem;
}
.column-left h1 {
margin-top: 3px;
font-size: 2.5rem;
margin-bottom : 2rem;
}
.column-left p {
margin-left: 4rem;
margin-right: 4rem;
font-size: 1.2rem;
line-height: 1.5;
margin-bottom : 3rem;
}
/* button {
padding: 1rem 3rem ;
font-size: 1rem;
border: none;
color: #ECF4D6;
background: #265073;
cursor:pointer ;
border-radius: 50px;
}
button:hover{
background: #9ad0c2;
color: #265073;
} */
</style>
</body>
</html>