-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
292 lines (289 loc) · 11 KB
/
index.html
File metadata and controls
292 lines (289 loc) · 11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping</title>
<link rel="stylesheet" href="style.css">
<!--Box Icons-->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<!--link swipper-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
</head>
<body>
<!--navbar-->
<header>
<a href="#" class="logo"><i class="bx bx-basket bx-flip-horizontal bx-tada bx-rotate-90" ></i>Shop</a>
<!--Menu Icon -->
<div class="bx bx-menu" id="menu-icon"></div>
<!--Nav List-->
<ul class="navbar">
<li><a href="#home" class="home-active">Home</a></li>
<li><a href="#categories">Categories</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#about">About</a></li>
<li><a href="#customers">Customers</a></li>
</ul>
<!--profile-->
<div class="profile">
<img src="img/profile.jpg" alt="">
<span>Karim Guidara</span>
<i class="bx bx-caret-down bx-tada " ></i>
</header>
<!--home section-->
<section class="home swiper" id="home">
<div class="swiper-wrapper">
<!--slide 1-->
<div class="swiper-slide container">
<div class="home-text">
<span>we are delicacy</span>
<h1>choose delicacy <br> the best healthy <br> chicken salad</h1>
<a href="shop.html" class="btn">Shop Now<i class='bx bx-right-arrow-alt' ></i> </a>
</div>
<img src="img/home1.png" alt="">
</div>
<!--slide 2-->
<div class="swiper-slide container">
<div class="home-text">
<span>we are delicacy</span>
<h1>choose delicacy <br> the best healthy <br> chicken salad</h1>
<a href="shop.html" class="btn">Shop Now<i class='bx bx-right-arrow-alt' ></i> </a>
</div>
<img src="img/home2.png" alt="">
</div>
<!--slide 3-->
<div class="swiper-slide container">
<div class="home-text">
<span>we are delicacy</span>
<h1>choose delicacy <br> the best healthy <br> chicken salad</h1>
<a href="shop.html" class="btn">Shop Now<i class='bx bx-right-arrow-alt' ></i> </a>
</div>
<img src="img/home3.png" alt="">
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</section>
<!--les categories-->
<section class="categories" id="categories">
<div class="heading">
<h1>this is our <br><span>Categories</h1>
<a href="#" class="btn">See All<i class='bx bx-right-arrow-alt' ></i> </a>
</div>
<!--container content -->
<div class="categories-container">
<!--Box 1-->
<div class="box box1">
<img src="img/cate1.png" alt="">
<h2>Fruits</h2>
<span>10 Items</span>
<a href="fruit.html" class="box-link"><i class='bx bx-right-arrow-alt' ></i></a>
</div>
<!--Box 2-->
<div class="box box2">
<img src="img/cate2.png" alt="">
<h2>Vegetables</h2>
<span>10 Items</span>
<a href="vegetable.html" class="box-link"><i class='bx bx-right-arrow-alt' ></i></a>
</div>
<!--Box 3-->
<div class="box box3">
<img src="img/cate3.png" alt="">
<h2>Drinks</h2>
<span>10 Items</span>
<a href="drink.html" class="box-link"><i class='bx bx-right-arrow-alt' ></i></a>
</div>
<!--Box 4-->
<div class="box box4">
<img src="img/cate4.png" alt="">
<h2>Fresh Nuts</h2>
<span>10 Items</span>
<a href="nut.html" class="box-link"><i class='bx bx-right-arrow-alt' ></i></a>
</div>
<!--Box 5-->
<div class="box box5">
<img src="img/cate5.png" alt="">
<h2>Spices</h2>
<span>10 Items</span>
<a href="spice.html" class="box-link"><i class='bx bx-right-arrow-alt' ></i></a>
</div>
</div>
</section>
<!--Products-->
<section class="products" id="products">
<div class="heading">
<h1> our popular <br><span>Products</h1>
<a href="shop.html" class="btn">Shop Now<i class='bx bx-right-arrow-alt' ></i> </a>
</div>
<!--Product Content-->
<div class="products-conatiner">
<!--box 1-->
<div class="box">
<img src="img/p1.png" alt="">
<span>Fresh Items</span>
<h2>Farm fresh organic <br>Peaches 250g</h2>
<h3 class="price">$8.90 <span>/Kg</span></h3>
<a href="shop.html" class="btn"><i class="bx bx-cart-alt " ></i></a>
<i class='bx bx-heart' ></i>
<span class="discount">-24%</span>
</div>
<!--box 2-->
<div class="box">
<img src="img/p2.png" alt="">
<span>Fresh Items</span>
<h2>Farm fresh organic <br>Passion fruit 550g</h2>
<h3 class="price">$15.11 <span>/Kg</span></h3>
<a href="shop.html" class="btn"><i class="bx bx-cart-alt " ></i></a>
<i class='bx bx-heart' ></i>
<span class="discount">-20%</span>
</div>
<!--box 3-->
<div class="box">
<img src="img/p3.png" alt="">
<span>Fresh Items</span>
<h2>Farm fresh organic <br>Carrots 200g</h2>
<h3 class="price">$5.75 <span>/Kg</span></h3>
<a href="shop.html" class="btn"><i class="bx bx-cart-alt " ></i></a>
<i class='bx bx-heart' ></i>
<span class="discount">-23%</span>
</div>
<!--box 4-->
<div class="box">
<img src="img/p4.png" alt="">
<span>Fresh Items</span>
<h2>Farm fresh organic <br>Strawberries 750g</h2>
<h3 class="price">$17.29 <span>/Kg</span></h3>
<a href="shop.html" class="btn"><i class="bx bx-cart-alt " ></i></a>
<i class='bx bx-heart' ></i>
<span class="discount">-15%</span>
</div>
<!--box 5-->
<div class="box">
<img src="img/p5.png" alt="">
<span>Fresh Items</span>
<h2>Farm fresh organic <br>Cherries 550g</h2>
<h3 class="price">$11 <span>/Kg</span></h3>
<a href="shop.html" class="btn"><i class="bx bx-cart-alt " ></i></a>
<i class='bx bx-heart' ></i>
<span class="discount">-29%</span>
</div>
<!--box 6-->
<div class="box">
<img src="img/p6.png" alt="">
<span>Fresh Items</span>
<h2>Farm fresh organic <br>Potatoes 850g</h2>
<h3 class="price">$18.74 <span>/Kg</span></h3>
<a href="shop.html" class="btn"><i class="bx bx-cart-alt " ></i></a>
<i class='bx bx-heart' ></i>
<span class="discount">-15%</span>
</div>
</div>
</section>
<!--About-->
<section class="about" id="about">
<img src="img/about.png" alt="">
<div class="about-text">
<span>About Us</span>
<p>A delicacy is often defined as a rare or luxurious food that carries cultural, historical, or seasonal significance. Around the world, different communities treasure unique ingredients such as truffles, caviar, or exotic fruits, not only for their taste but also for the traditions they represent.</p>
<p>Enjoying a delicacy is more than just eating; it is an experience that connects people to their heritage and environment. Whether it is a carefully prepared dessert, a regional specialty, or a festive dish, delicacies remind us of the artistry and passion behind gastronomy.</p>
<a href="#" class="btn">Learn More<i class='bx bx-right-arrow-alt' ></i> </a>
</section>
<!--Cusomers-->
<section class="customers" id="customers">
<!--customer content-->
<div class="customers-container">
<!--Review 1-->
<div class="box">
<i class='bx bxs-quote-left' ></i>
<div class="stars">
<i class='bx bxs-star' ></i>
<i class='bx bxs-star' ></i>
<i class='bx bxs-star' ></i>
<i class='bx bxs-star' ></i>
<i class='bx bxs-star-half' ></i>
</div>
<p>The food was absolutely amazing! Every dish felt like a true delicacy, and the presentation was stunning. I will definitely come back again.</p>
<div class="review-profile">
<img src="img/c1.jpg" alt="">
<h3>Linda Smith</h3>
</div>
</div>
<!--Review 2-->
<div class="box">
<i class='bx bxs-quote-left' ></i>
<div class="stars">
<i class='bx bxs-star' ></i>
<i class='bx bxs-star' ></i>
<i class='bx bxs-star' ></i>
<i class='bx bxs-star' ></i>
<i class='bx bxs-star-half' ></i>
</div>
<p>A wonderful experience overall. The staff was kind, and the atmosphere was cozy. The dessert delicacies were the highlight of my evening!</p>
<div class="review-profile">
<img src="img/c2.jpg" alt="">
<h3>Mickel Bruce</h3>
</div>
</div>
<!--Review 3-->
<div class="box">
<i class='bx bxs-quote-left' ></i>
<div class="stars">
<i class='bx bxs-star' ></i>
<i class='bx bxs-star' ></i>
<i class='bx bxs-star' ></i>
<i class='bx bxs-star' ></i>
<i class='bx bxs-star-half' ></i>
</div>
<p>Exquisite flavors and excellent service. The delicacies were fresh and authentic, reminding me of my travels abroad. Highly recommended!</p>
<div class="review-profile">
<img src="img/c3.jpg" alt="">
<h3></h3>
</div>
</div>
</div>
</section>
<!--Footer-->
<section class="footer" id="footer">
<div class="footer-box">
<a href="#" class="logo"><i class="bx bx-basket bx-flip-horizontal bx-tada bx-rotate-90" ></i>Shop</a>
<p>GymVast , 50th Street ,4th <br>Floor ,NYC 10022</p>
<div class="social">
<a href="#"><i class='bx bxl-facebook'></i></a>
<a href="#"><i class='bx bxl-twitter'></i></a>
<a href="#"><i class='bx bxl-instagram'></i></a>
<a href="#"><i class='bx bxl-youtube'></i></a>
</div>
</div>
<div class="footer-box">
<h2>Categories</h2>
<a href="#">Fruits & Vegetables</a>
<a href="#">Dairy Products</a>
<a href="#">Package Food</a>
<a href="#">Bevarage</a>
</div>
<div class="footer-box">
<h2>Useful Links</h2>
<a href="#">Payement & Tax</a>
<a href="#">Terms Of Use</a>
<a href="#">My Blog</a>
<a href="#">Return Policy</a>
</div>
<div class="footer-box">
<h2>Newsletter</h2>
<p>Get 10% Discount with <br> Email Newsletter</p>
<form action="">
<i class="bx bxs-envelope bx-beat "></i>
<input type="email" name="" id="" placeholder="Enter Your Email">
<i class='bx bx-arrow-back bx-rotate-180 '></i>
</form>
</div>
</section>
<!--copyright-->
<div class="copyright">
<p>© CarpoolVenom All Right Reserved.</p>
</div>
<!--link javascript-->
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>