-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
333 lines (330 loc) · 17.1 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required Meta Tag -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Muhammad Nasir Uddin Khan Shawon" />
<meta name="description" content="Shop fresh groceries from the comfort of your home with Groceria - your one-stop online grocery store. Easy ordering, fast delivery, and quality products guaranteed." />
<!-- Web Page Title -->
<title>About | Groceria - Online Grocery Shop</title>
<!-- Favicon -->
<link rel="shortcut icon" href="./assets/images/favicon.svg" type="image/x-icon" />
<!-- Font Awesome : CSS -->
<link rel="stylesheet" href="./plugins/font-awesome/css/all.min.css" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./plugins/bootstrap/css/bootstrap.min.css" />
<!-- Owl Carousel -->
<link rel="stylesheet" href="./plugins/owl-carousel/css/owl.carousel.min.css" />
<link rel="stylesheet" href="./plugins/owl-carousel/css/owl.theme.default.min.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="./assets/css/styles3.css" />
</head>
<body>
<!-- Scroll-to-Top Button -->
<button id="top" type="button" class="btn btn-scroll-top" >
<i class="fas fa-angle-up"></i>
</button>
<!-- HEADER -->
<header class="bg-light py-2">
<!-- Top Header -->
<div class="container d-md-flex top-header align-items-center">
<div class="d-flex flex-wrap align-items-center">
<i class="fas fa-phone me-2"></i>
<a href="tel:+880124567890" class="text-dark text-decoration-none me-4">+88 (012) 34-567890</a>
<i class="fas fa-envelope me-2"></i>
<a href="mailto:[email protected]" class="text-dark text-decoration-none me-4">[email protected]</a>
</div>
<div class="d-flex flex-wrap align-items-center">
<i class="fas fa-map-marker-alt me-2"></i>
<span class="text-dark me-4">Mirpur, Dhaka-1216</span>
<i class="fas fa-clock me-2"></i>
<span class="text-dark">9AM to 11PM</span>
</div>
</div><!-- /.top-header -->
</header>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-md bg-light navbar-light shadow-sm sticky-top py-3">
<div class="container">
<!-- Navbar Brand -->
<a class="navbar-brand" href="index.html">
<img src="./assets/images/logo.png" width="150" alt="" />
</a><!-- /.navbar-brand -->
<!-- Navbar Toggler -->
<button class="navbar-toggler d-lg-none" type="button" data-bs-toggle="collapse" data-bs-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span><!-- /.navbar-toggler-icon -->
</button><!-- /.navbar-toggler -->
<!-- Navbar Collapse -->
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a><!-- /.nav-link -->
</li><!-- /.nav-item -->
<li class="nav-item">
<a class="nav-link" href="about.html">About</a><!-- /.nav-link -->
</li><!-- /.nav-item -->
<li class="nav-item">
<a class="nav-link" href="shop.html">Shop</a><!-- /.nav-link -->
</li><!-- /.nav-item -->
<li class="nav-item">
<a class="nav-link" href="category.html">Category</a><!-- /.nav-link -->
</li><!-- /.nav-item -->
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a><!-- /.nav-link -->
</li><!-- /.nav-item -->
</ul><!-- /.navbar-nav -->
<ul class="navbar-nav icon-menu ms-auto">
<li class="nav-item">
<a class="btn btn-outline-primary rounded-circle" href="#">
<i class="fas fa-search"></i>
</a><!-- /.btn -->
</li><!-- /.nav-item -->
<li class="nav-item">
<a class="btn btn-outline-primary rounded-circle position-relative" href="wishlist.html">
<i class="fas fa-heart"></i>
<span class="badge bg-primary rounded-circle position-absolute" style="top: -12px; right: -8px;" >0</span>
</a><!-- /.btn -->
</li><!-- /.nav-item -->
<li class="nav-item">
<a class="btn btn-outline-primary rounded-circle position-relative" href="cart.html">
<i class="fas fa-shopping-cart"></i>
<span class="badge bg-primary rounded-circle position-absolute" style="top: -12px; right: -8px;" >0</span>
</a><!-- /.btn -->
</li><!-- /.nav-item -->
<li class="nav-item">
<a class="btn btn-outline-primary rounded-circle" href="./auth/index.html">
<i class="fas fa-user"></i>
</a><!-- /.btn -->
</li><!-- /.nav-item -->
</ul><!-- /.navbar-nav -->
</div><!-- /.navbar-collapse -->
</div><!-- /.container -->
</nav><!-- /.navbar -->
<!-- CAROUSEL -->
<div id="demo" class="carousel slide delivary" data-bs-ride="carousel">
<!-- The slideshow/carousel -->
<div class="carousel-inner">
<div class="carousel-item active">
<p class="py-2 m-0 text-center">
<i class="fas fa-truck-fast"></i>
<span>Delivery charges will be <span class="badge bg-secondary">Free</span> only in <b>Mirpur</b></span>
</p>
</div><!-- /.carousel-item -->
<div class="carousel-item">
<p class="py-2 m-0 text-center">
<i class="fas fa-truck-fast"></i>
<span>Delivery charges will be <span class="badge bg-secondary">BDT. 60/-</span> only in <b>Dhaka</b></span>
</p>
</div><!-- /.carousel-item -->
<div class="carousel-item">
<p class="py-2 m-0 text-center">
<i class="fas fa-truck-fast"></i>
<span>Delivery charges will be <span class="badge bg-secondary">BDT. 120/-</span> outside <b>Dhaka</b></span>
</p>
</div><!-- /.carousel-item -->
</div><!-- /.carousel-inner -->
</div><!-- /.carousel -->
<!-- MAIN CONTENT -->
<main>
<section class="my-5">
<div class="container">
<p class="text-justify indent lh-lg py-2">
Welcome to Groceria, your one-stop online grocery shop located in Pallabi, Mirpur, Dhaka-1216. Our mission is to provide you with high-quality products and exceptional customer service, all from the comfort of your own home.
</p>
<p class="text-justify indent lh-lg py-2">
We understand the challenges of grocery shopping in today's fast-paced world. That's why we offer a wide range of products to meet your daily needs, from fresh fruits and vegetables to household essentials and personal care items. We work hard to ensure that all of our products are sourced from trusted suppliers and are of the highest quality.
</p>
<p class="text-justify indent lh-lg py-2">
At Groceria, we believe in making grocery shopping as convenient as possible for our customers. That's why we offer a user-friendly online platform where you can easily browse and purchase products, track your orders, and even schedule delivery at a time that works best for you.
</p>
<p class="text-justify indent lh-lg py-2">
We take pride in our exceptional customer service and are always here to assist you with any questions or concerns you may have. Our dedicated team of professionals is committed to providing you with a seamless and stress-free shopping experience.
</p>
<p class="text-justify indent lh-lg py-2">
Thank you for choosing Groceria as your preferred online grocery shop. We look forward to serving you and your family with the freshest and highest quality products in Pallabi, Mirpur, Dhaka-1216.
</p>
</div>
</section>
</main>
<!-- FOOTER WIDGETS -->
<section class="py-5" style="background-color: rgb(228, 227, 227);" >
<div class="container">
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-3 col-xl-3 col-xxl-3">
<div class="position-relative">
<img src="./assets/images/logo.png" width="250" alt="">
<p class="text-justify text-xs mt-2 mb-3">
"Shop fresh groceries from the comfort of your home with Groceria - your one-stop online grocery store. Easy ordering, fast delivery, and quality products guaranteed."
</p>
<div class="footer-info">
<p class="text-xs py-0 my-1">
<span>
<i class="fas fa-phone"></i>
</span>
<span class="ps-3 pe-2">:</span>
<span>+88 (012) 34-567890</span>
</p>
<p class="text-xs py-0 my-1">
<span>
<i class="fas fa-envelope"></i>
</span>
<span class="ps-3 pe-2">:</span>
<span>[email protected]</span>
</p>
<p class="text-xs py-0 my-1">
<span>
<i class="fas fa-location-dot"></i>
</span>
<span class="ps-3 pe-2">:</span>
<span>Mirpur, Dhaka-1216</span>
</p>
</div><!-- /.footer-info -->
</div>
</div><!-- /.col -->
<div class="col-12 col-sm-12 col-md-12 col-lg-6 col-xl-6 col-xxl-6">
<div class="row">
<div class="col-4 col-sm-4 col-md-4 col-lg-4 col-xl-4 col-xxl-4">
<!-- Widget -->
<div class="widget">
<h6>Informations</h6>
<ul class="navbar-nav text-xs mt-3">
<a href="./info/index.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">Disclaimer</span>
</a><!-- /.nav-link -->
<a href="./blog/index.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">Blog Page</span>
</a><!-- /.nav-link -->
<a href="./info/terms.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">Terms of Service</span>
</a>
<!-- /.nav-link -->
<a href="./info/faq.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">F.A.Q</span>
</a><!-- /.nav-link -->
</ul><!-- /.navbar-nav -->
</div><!-- /.widget -->
</div><!-- /.col -->
<div class="col-4 col-sm-4 col-md-4 col-lg-4 col-xl-4 col-xxl-4">
<!-- Widget -->
<div class="widget">
<h6>Featured</h6>
<ul class="navbar-nav text-xs mt-3">
<a href="category.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">Home & Cleaning</span>
</a><!-- /.nav-link -->
<a href="category.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">Beauty Products</span>
</a><!-- /.nav-link -->
<a href="category.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">Kitchen Appliances</span>
</a><!-- /.nav-link -->
<a href="category.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">Health Products</span>
</a><!-- /.nav-link -->
</ul><!-- /.navbar-nav -->
</div><!-- /.widget -->
</div><!-- /.col -->
<div class="col-4 col-sm-4 col-md-4 col-lg-4 col-xl-4 col-xxl-4">
<!-- Widget -->
<div class="widget">
<h6>Our Policies</h6>
<ul class="navbar-nav text-xs mt-3">
<a href="./policy/index.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">Privacy Policy</span>
</a><!-- /.nav-link -->
<a href="./policy/shipping.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">Shipping Policy</span>
</a><!-- /.nav-link -->
<a href="./policy/return.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">Return Policy</span>
</a><!-- /.nav-link -->
<a href="./policy/refund.html" class="nav-link py-1">
<i class="fas fa-hand-point-right"></i>
<span class="ps-2">Refund Policy</span>
</a><!-- /.nav-link -->
</ul><!-- /.navbar-nav -->
</div><!-- widget -->
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.col -->
<div class="col-12 col-sm-12 col-md-12 col-lg-3 col-xl-3 col-xxl-3">
<div class="newsletter">
<h5>Subscribe for Newsletter</h5>
<form action="" class="form-floating" >
<div class="form-floating mb-3">
<input type="text" class="form-control" id="name" placeholder="John Doe" />
<label for="name">Full Name</label>
</div><!-- /.form-floating -->
<div class="form-floating">
<input type="email" class="form-control" id="email" placeholder="[email protected]" />
<label for="email">Email Address</label>
</div><!-- /.form-floating -->
<div class="btn-group d-grid mt-3">
<button type="submit" class="btn btn-outline-primary" >
<i class="fas fa-envelope"></i>
<span class="ps-2">Subscribe</span>
</button><!-- /.btn -->
</div><!-- /.btn-group -->
</form><!-- /.form-floating -->
</div><!-- /.newsletter -->
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- ./footer-widgets -->
<!-- FOOTER BAR -->
<footer class="py-2" style="background-color: rgb(228, 227, 227);">
<div class="container d-md-flex footer-bar align-items-center">
<div class="d-flex flex-wrap align-items-center">
<p class="py-0 my-0">
<span>2023</span>
<span class="ps-1 pe-1">|</span>
<span class="pe-1">Created By :</span>
<a href="https://www.shawon-khan.com" style="text-decoration: none;" target="_blank">Shawon Khan</a>
</p>
</div>
<div class="d-flex social-media flex-wrap align-items-center">
<a href="https://www.facebook.com/shawonkhan.cupid" class="btn btn-outline-secondary rounded-circle" target="_blank">
<i class="fab fa-facebook-f"></i>
</a><!-- /.btn -->
<a href="https://www.twitter.com/shawonk9999" class="btn btn-outline-secondary rounded-circle" target="_blank">
<i class="fab fa-twitter"></i>
</a><!-- /.btn -->
<a href="https://www.linkedin.com/in/shawonkhan007" class="btn btn-outline-secondary rounded-circle" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a><!-- /.btn -->
<a href="https://www.instagram.com/shawonk9999" class="btn btn-outline-secondary rounded-circle" target="_blank">
<i class="fab fa-instagram"></i>
</a><!-- /.btn -->
<a href="https://www.behance.com/shawonk9999" class="btn btn-outline-secondary rounded-circle" target="_blank">
<i class="fab fa-behance"></i>
</a><!-- /.btn -->
<a href="https://www.github.com/shawonk007" class="btn btn-outline-secondary rounded-circle" target="_blank">
<i class="fab fa-github"></i>
</a><!-- /.btn -->
</div>
</div><!-- /.footer-bar -->
</footer>
<!-- jQuery -->
<script src="./plugins/jQuery/jquery-3.6.4.min.js"></script>
<!-- Font Awesome : JS -->
<script src="./plugins/font-awesome/js/all.min.js"></script>
<!-- Bootstrap JS -->
<script src="./plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Owl Carousel -->
<script src="./plugins/owl-carousel/js/owl.carousel.min.js"></script>
<!-- Custom JS -->
<script src="./assets/js/scripts3.js"></script>
</body>
</html>