-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeat.html
188 lines (172 loc) · 7.08 KB
/
meat.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
<!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>
<!--product boxes -->
<section id="-product">
<!--heading----------->
<div class="product-heading">
<h3 class="product-heading">Meat and Seafood</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>
</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>