-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvegetables.html
More file actions
144 lines (133 loc) · 6.48 KB
/
vegetables.html
File metadata and controls
144 lines (133 loc) · 6.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vegetables Page</title>
<link rel="stylesheet" href="vegetable.css">
</head>
<body>
<!--navigation bar--------------------------------------------------------------------------------------->
<header>
<nav>
<section class="logo">
<img src="./images/file.png">
<h1>Grocy super market</h1>
</section>
<ul id="menuList">
<li><a href="index.html">Home</a></li>
<li><a href="About us.html">About</a></li>
<li><a href="dairy.html">Diary</a></li>
<li><a href="vegetables.html">Vegetable</a></li>
<li><a href="cosmetics and skin care.html">skin care and cosmatics</a></li>
<li><a href="order page.html">order page</a></li>
<li><a href="loyalty .html">loyalty page</a></li>
</ul>
</nav>
</header>
<!--navigation bar ends---------------------------------------------------------------------------->
<!-----vegetable venue---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
<header>
<h1>Welcome to Our Vegetables sectiontion</h1>
<br>
<p> Explore fresh and organic vegetables from our trusted venues.</p>
</header>
<sectiontion class="venues">
<section class="venue">
<h2>Evergreen Farms</h2>
<p>Nestled amidst lush greenery, Evergreen Farms is a leading producer of fresh vegetables in Nuwara Eliya.
With a focus on organic farming practices, they cultivate a wide variety of vegetables, including
carrots, cabbage, lettuce, and beans.</p>
</section>
<section class="venue">
<h2>Highland Harvest</h2>
<p>Highland Harvest is renowned for its high-quality produce grown at high altitudes. Their farm-to-table
approach ensures that only the freshest and finest vegetables reach consumers' tables. From vibrant bell
peppers to crisp cucumbers, Highland Harvest offers an array of fresh and flavorful vegetables.
</p>
</section>
<section class="venue">
<h2>Urban Garden Co.</h2>
<p>Urban Garden Co. delivers fresh vegetables right from their rooftop gardens, bringing city dwellers
closer to nature.</p>
</section>
</sectiontion>
<!---vegetable venue ends---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
<sectiontion class="vegetables-container">
<section class="vegetable">
<img src="images/Pic914009.jpg" alt="Cucmber">
<h3>Cucmber</h3>
<p>Price:RS10/100g</p>
<button class="buy-button">Buy Now</button>
</section>
<section class="vegetable">
<img src="images/Pic914015.jpg" alt="Garlic">
<h3>Garlic</h3>
<p>Price: RS70/100g</p>
<button class="buy-button">Buy Now</button>
</section>
<section class="vegetable">
<img src="images/Pic914043.jpg" alt="Onion">
<h3>Onion</h3>
<p>Price: RS50/100g</p>
<button class="buy-button">Buy Now</button>
</section>
<section class="vegetable">
<img src="images/Pic914049.jpg" alt="sweet potatoe">
<h3>sweet potatoe</h3>
<p>Price: RS30/100g</p>
<button class="buy-button">Buy Now</button>
</section>
<section class="vegetable">
<img src="images/Pic915014.jpg" alt="potatoe">
<h3>potatoe</h3>
<p>Price: RS40/100g</p>
<button class="buy-button">Buy Now</button>
</section>
<div class="vegetable">
<img src="images/Pic915016.jpg" alt="Tomatoe">
<h3>Tomatoe</h3>
<p>Price: R.s50/100g</p>
<button class="buy-button">Buy Now</button>
</div>
</sectiontion>
<footer>
<a href="order.html">Order Here</a>
</footer>
<footer class="footer">
<section class="footer-container">
<section class="footer-sectiontion">
<h4>Contact Us</h4>
<p>Email: contact@grocysupermarket.com</p>
<p>Phone: +1 123-456-7890</p>
<p>Address: 123 Main Street, City, Country</p>
</section>
<section class="footer-sectiontion">
<h4>Quick Links</h4>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="About us.html">About Us</a></li>
<li><a href="dairy.html">dairy</a></li>
<li><a href="cosmetics and skin care.html">cosmetics and skincare</a></li>
<li><a href="vegetables.html">vegetables</a></li>
<li><a href="order page.html">order</a></li>
<li><a href="loyalty .html">loyalty</a></li>
</ul>
</section>
<section class="footer-sectiontion">
<h4>Connect With Us</h4>
<ul class="social-links">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
<li><a href="#"><i class="fab fa-pinterest"></i></a></li>
</ul>
</section>
</section>
<section class="copyright">
<p>© 2024 Grocy Supermarket. All rights reserved.</p>
</section>
</footer>
<!--footer ends-------------------------------------------------------------------------------------------------------------------------->
</body>
</html>