-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
155 lines (121 loc) · 4.62 KB
/
about.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
@include 'config.php';
session_start();
$user_id = $_SESSION['user_id'];
if(!isset($user_id)){
header('location:login.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>about</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<?php include 'header.php'; ?>
<section class="about">
<div class="row">
<div class="box">
<img src="images/about-img-1.png" alt="">
<h3>why choose us?</h3>
<p>LOWEST PRICES</p>
<p>SPOT DELIVERY</p>
<p>PAY ON DELIVERY</p>
<p>BEST SERVICE GUARANTEED</p>
<p>A few clicks and you are ready to order. We offers a wide range of products. Grocer se have a proper maintained delivery-system, and one of the most neat delivery system. You can pay cash at delivery, pay online or pay via e-wallets like Paytm, etc. Returns can be done at the spot. If you dont want a specific product from the ordered items, you can return to the delivery executive and get paid instantly. If you are unhappy with a product you may return.</p>
<a href="contact.php" class="btn">contact us</a>
</div>
<div class="box">
<img src="images/about-img-2.png" alt="">
<h3>what we provide?</h3>
<p>We're a digital platform that brings businesses and consumers together to foster trust and inspire collaboration. We're free to use, open to everybody, and built on transparency.</p>
<a href="shop.php" class="btn">our shop</a>
</div>
</div>
</section>
<section class="reviews">
<h1 class="title">clients reivews</h1>
<div class="box-container">
<div class="box">
<img src="images/pic-1.png" alt="">
<p>Wonderful Products and Groceries and a very good price.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>john deo</h3>
</div>
<div class="box">
<img src="images/pic-2.png" alt="">
<p>Great quality produce and speedy delivery.Thank you</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>john deo</h3>
</div>
<div class="box">
<img src="images/pic-3.png" alt="">
<p>Thank you for the service, well packaged</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>john deo</h3>
</div>
<div class="box">
<img src="images/pic-4.png" alt="">
<p>Found exactly what I’ve been looking for ! Great price, customer service and fast delivery. Will be ordering again for sure !</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>john deo</h3>
</div>
<div class="box">
<img src="images/pic-5.png" alt="">
<p>Very fast delivery and excellent value for money. Will be shopping again in future.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>john deo</h3>
</div>
<div class="box">
<img src="images/pic-6.png" alt="">
<p>Fresh products, good quality and time. Keep doing same quality.thanks</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>john deo</h3>
</div>
</div>
</section>
<?php include 'footer.php'; ?>
<script src="js/script.js"></script>
</body>
</html>