-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdairy.html
265 lines (233 loc) · 10.1 KB
/
dairy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="x-icon" href="images/main/favicon.png" >
<title>Market Heaven</title>
<link rel="stylesheet" href="dairy.css" type="text/css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
</head>
<body>
<!--logo and header banner-->
<section class="parallax">
<div class="logo">
<img src="images/main/Shop Logo.png" alt="Logo">
</div>
<div class="page-title">Market Heaven</div>
</section>
<!--navigation bar-->
<nav>
<section class="menu" id="menu">
<div class="menu-toggle" id="menu-toggle">
<i class="fas fa-bars"></i>
</div>
<ul class="menu-ul" id="menu-ul">
<a href="index.html" class="a-menu"><li>Home</li></a>
<a href="about.html" class="a-menu"><li>About</li></a>
<li class="dropdown">
<a href="#" class="a-menu">Products <i class="fas fa-caret-down"></i></a>
<div class="dropdown-content">
<a href="vegetables.html">Vegetables</a>
<a href="dairy.html">Dairy</a>
<a href="cosmetics.html">Cosmetics</a>
<a href="./fruits.html">Fruits</a>
<a href="./meat.html">Meat and Seafood</a>
<a href="./baking.html">Baking and Cooking Ingredients</a>
</div>
</li>
<a href="order.html" class="a-menu"><li>Order</li></a>
<a href="sign.html" class="a-menu"><li>Loyalty Registration</li></a>
</ul>
</section >
</nav>
<script src="main.js"></script>
<!-- dairy banner slideshow--------->
<section class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="images/Dairy/1.png" style="width:100%">
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="images/Dairy/2.png" style="width:100%">
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="images/Dairy/3.png" style="width:100%">
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</section>
<script src="script.js"></script>
<!--divider line -->
<hr class="divider">
<!-- Section with white text and background image -->
<section class="dairy-section">
<h3>Welcome to our Dairy Delights section at Market Heaven, where we offer a diverse selection of premium dairy products to
elevate your culinary experience. From the convenience of milk powder and fresh milk sourced from local farms to
the indulgence of artisanal cheeses and creamy yogurt, our range has something for every palate. Indulge in the richness of our butter,
savor the sweetness of our handcrafted ice cream, and enjoy the convenience of our milk packets. Discover the perfect dairy products to
enhance your recipes and meals, all curated with a focus on quality and freshness.</h3>
</section>
<!--product boxes -->
<section id="-product">
<!--heading----------->
<div class="product-heading">
<h3 class="product-heading">Our Dairy Products</h3>
</div>
<section id="dairy-products">
<div class="product-container">
<div class="product-box">
<img alt="Highland Yoghurt" src="images/home/yoghurt.png">
<strong>Highland Yoghurt</strong>
<span class="quantity">1 Pcs</span><br>
<span class="price">40 LKR</span>
<a href="order.html" class="cart-btn">
<i class="fas fa-shopping-bag"></i> Add Cart
</a>
</div>
<div class="product-box">
<img alt="Ambewela Fresh Milk" src="images/Dairy/fresh milk.jpg">
<strong>Ambewela Fresh Milk</strong>
<span class="quantity">1 Pcs</span><br>
<span class="price">800 LKR</span>
<a href="order.html" class="cart-btn">
<i class="fas fa-shopping-bag"></i> Add Cart
</a>
</div>
<div class="product-box">
<img alt="Happy Cow Cheese" src="images/home/happy-cow.jpg">
<strong>Happy Cow Cheese</strong>
<span class="quantity">1 Pcs</span><br>
<span class="price">490 LKR</span>
<a href="order.html" class="cart-btn">
<i class="fas fa-shopping-bag"></i> Add Cart
</a>
</div>
<div class="product-box">
<img alt="anchor" src="images/Dairy/anchor.jpg">
<strong>Anchor Milk Powder</strong>
<span class="quantity">1 Pcs</span><br>
<span class="price">350 LKR</span>
<a href="order.html" class="cart-btn">
<i class="fas fa-shopping-bag"></i> Add Cart
</a>
</div>
<div class="product-box">
<img alt="rich life" src="images/Dairy/rich life.jpg">
<strong>Richlife Iced Coffee</strong>
<span class="quantity">100ml</span><br>
<span class="price">620 LKR</span>
<a href="order.html" class="cart-btn">
<i class="fas fa-shopping-bag"></i> Add Cart
</a>
</div>
<div class="product-box">
<img alt="Milo Packet" src="images/Dairy/milo.jpg">
<strong>Milo Packet</strong>
<span class="quantity">1 Pcs</span><br>
<span class="price">560 LKR</span>
<a href="order.html" class="cart-btn">
<i class="fas fa-shopping-bag"></i> Add Cart
</a>
</div>
<div class="product-box">
<img alt="magic" src="images/Dairy/magic.jpg">
<strong>Magic Chocolate Tub </strong>
<span class="quantity">1 Pcs</span><br>
<span class="price">40 LKR</span>
<a href="order.html" class="cart-btn">
<i class="fas fa-shopping-bag"></i> Add Cart
</a>
</div>
<div class="product-box">
<img alt="rakthi" src="images/Dairy/rakthi.jpg">
<strong>Rakthi Milk Powder</strong>
<span class="quantity">400g</span><br>
<span class="price">1000 LKR</span>
<a href="order.html" class="cart-btn">
<i class="fas fa-shopping-bag"></i> Add Cart
</a>
</div>
<div class="product-box">
<img alt="Kotmale-Chocolate" src="images/Dairy/Kotmale-Chocolate.jpg">
<strong>Kotmale Chocolate Milk</strong>
<span class="quantity">1 Pcs</span><br>
<span class="price">80 LKR</span>
<a href="order.html" class="cart-btn">
<i class="fas fa-shopping-bag"></i> Add Cart
</a>
</div>
</div>
</section>
</section>
<!-------------------footer--------------------->
<footer>
<section class="footer-container">
<!-- Logo and social media icons -->
<div class="footer-content">
<div class="footer-logo">
<img src="images/main/Shop Logo.png" alt="Shop Logo">
</div>
<div class="footer-social">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<!-- Quick Links -->
<div class="footer-links">
<strong>Quick Links</strong>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="vegetables.html">Products</a></li>
<li><a href="order.html">Order</a></li>
<li><a href="sign.html">Loyalty Registration</a></li>
</ul>
</div>
<!-- Categories -->
<div class="footer-links">
<strong>Categories</strong>
<ul>
<li><a href="./vegetables.html">Vegetables</a></li>
<li><a href="./dairy.html">Dairy Product</a></li>
<li><a href="./cosmetics.html">Cosmetics</a></li>
<li><a href="./fruits.html">Fruits</a></li>
<li><a href="./meat.html">Meat and Seafood</a></li>
<li><a href="./baking.html">Baking and Cooking</a></li>
</ul>
</div>
<!-- Contact -->
<div class="footer-links">
<strong>Contact</strong>
<ul>
<li><a href="#">Phone : +123456789</a></li>
<li><a href="#">Email : marketheaven@gmail.com</a></li>
</ul>
</div>
<!-- Payment Methods -->
<div class="footer-payment">
<strong>Payment Methods</strong>
<div class="payment-icons">
<img src="images/main/visa.png" alt="Visa">
<img src="images/main/master.png" alt="Mastercard">
<img src="images/main/paypal.png" alt="PayPal">
</div>
</div>
</section>
<!-- Copyright Section -->
<section class="footer-copyright">
<p>© 2024 MarketHeaven. All rights reserved.</p>
</div>
</section>
</body>
</html>