forked from Global-lane/globallane1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.html
More file actions
221 lines (211 loc) · 11.5 KB
/
products.html
File metadata and controls
221 lines (211 loc) · 11.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products | Global Lane</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="products.css">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
<a class="navbar-brand" href="#">
<img src="Globallane.png" alt="Global Lane Logo" class="logo">
Global Lane
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About Us</a></li>
<li class="nav-item"><a class="nav-link" href="products.html">Products</a></li>
<li class="nav-item"><a class="nav-link" href="services.html">Services</a></li>
<li class="nav-item"><a class="nav-link" href="trade-resources.html">Trade Resources</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li>
<li class="nav-item"><a class="nav-link" href="client-portal.html">Client Portal</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-product py-5 text-center">
<div class="container">
<h1 class="display-4 text-white">Our Premium Products</h1>
<p class="lead text-white">Discover the finest selection of agricultural products curated just for you.</p>
</div>
</section>
<!-- Product Grid -->
<section class="products py-5">
<div class="container">
<div class="row">
<!-- Product 1 -->
<div class="col-md-4 mb-4">
<div class="card border-0 shadow-sm">
<img src="pexels-polina-tankilevitch-4109744[1].jpg" class="card-img-top" alt="Arabica Coffee Beans">
<div class="card-body">
<h5 class="card-title">Arabica Coffee Beans</h5>
<p class="card-text">Sourced from the finest plantations, our Arabica coffee beans are renowned for their rich flavor and aroma.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<!-- Product 2 -->
<div class="col-md-4 mb-4">
<div class="card border-0 shadow-sm">
<img src="pexels-victoria-bowers-148548814-10487732[1].jpg" class="card-img-top" alt="Organic Pepper">
<div class="card-body">
<h5 class="card-title">Organic Pepper</h5>
<p class="card-text">Our organic pepper is carefully cultivated to ensure the highest quality, with a bold and intense flavor profile.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<!-- Product 3 -->
<div class="col-md-4 mb-4">
<div class="card border-0 shadow-sm">
<img src="pexels-ksphotography-9142634[1].jpg" class="card-img-top" alt="Premium Cardamom">
<div class="card-body">
<h5 class="card-title">Premium Cardamom</h5>
<p class="card-text">Sourced from the finest estates, our premium cardamom delivers a fragrant aroma and rich taste to elevate your dishes.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<!-- Product 4 -->
<div class="col-md-4 mb-4">
<div class="card border-0 shadow-sm">
<img src="WhatsApp Image 2024-08-23 at 22.57.57_dce5dd9b.jpg" class="card-img-top" alt="Raw Coffee Beans">
<div class="card-body">
<h5 class="card-title">Raw Coffee Beans</h5>
<p class="card-text">Our raw coffee beans are sourced from premium plantations, offering a robust flavor and aromatic experience for the perfect brew.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card border-0 shadow-sm">
<img src="top-view-raw-rice-inside-bag-grey-surface.jpg" class="card-img-top" alt="Basmati Rice">
<div class="card-body">
<h5 class="card-title">Basmati Rice</h5>
<p class="card-text">Our Basmati rice is known for its long grains, fragrant aroma, and delicate flavor, making it a favorite choice worldwide.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<!-- Product 5 -->
<div class="col-md-4 mb-4">
<div class="card border-0 shadow-sm">
<img src="basmati-rice-6578507[1].jpg" class="card-img-top" alt="Basmati Rice">
<div class="card-body">
<h5 class="card-title"> Rice</h5>
<p class="card-text">Our rice is known for its long grains, fragrant aroma, and delicate flavor, making it a favorite choice worldwide.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="popup-form" id="popupForm">
<div class="popup-content">
<span class="close-btn" id="closeBtn">×</span>
<div class="popup-logo">
<img src="Globallane.png" alt="Global Lane Logo">
</div>
<h2 class="text-center">Client Details</h2>
<form>
<div class="form-group">
<label for="clientName">Full Name</label>
<input type="text" class="form-control" id="clientName" placeholder="Enter your name">
</div>
<div class="form-group">
<label for="clientEmail">Email</label>
<input type="email" class="form-control" id="clientEmail" placeholder="Enter your email">
</div>
<div class="form-group">
<label for="clientPhone">Phone Number</label>
<input type="text" class="form-control" id="clientPhone" placeholder="Enter your phone number">
</div>
<div class="form-group">
<label for="productInterest">Interested Product</label>
<select class="form-control" id="productInterest">
<option>Arabica Coffee Beans</option>
<option>Organic Pepper</option>
<option>Premium Cardamom</option>
<option>Raw Coffee Beans</option>
<option>Basmati Rice</option>
<option>Other Product Interested</option>
</select>
</div>
<div class="form-group">
<label for="otherProduct">If Other, Specify</label>
<input type="text" class="form-control" id="otherProduct" placeholder="Specify other product">
</div>
<div class="form-group">
<label for="quantity">Quantity (kg/tons):</label>
<input type="text" id="quantity" class="form-control" placeholder="Enter quantity" required>
</div>
<button type="submit" class="btn1 btn-primary btn-block">Submit</button>
</form>
</div>
</div>
<!-- Footer -->
<footer class="footer bg-dark text-white py-4">
<div class="container">
<div class="row">
<!-- Company Info -->
<div class="col-md-4">
<h5>About Global Lane</h5>
<p>Global Lane is dedicated to providing the highest quality agricultural products to clients around the world, ensuring sustainability and excellence in everything we do.</p>
</div>
<!-- Quick Links -->
<div class="col-md-4">
<h5>Quick Links</h5>
<ul class="list-unstyled">
<li><a href="about.html" class="text-white">About Us</a></li>
<li><a href="products.html" class="text-white">Products</a></li>
<li><a href="services.html" class="text-white">Services</a></li>
<li><a href="contact.html" class="text-white">Contact</a></li>
<li><a href="client-portal.html" class="text-white">Client Portal</a></li>
</ul>
</div>
<!-- Contact Info -->
<div class="col-md-4">
<h5>Contact Us</h5>
<p>Email: <a href="mailto:info@globallane.com" class="text-white">info@globallane.com</a></p>
<p>Phone: +123 456 7890</p>
<div class="social-icons">
<a href="#" class="text-white mr-2"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-white mr-2"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-white mr-2"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-white"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<hr class="bg-white">
<div class="text-center">
<p>© 2024 Global Lane. All Rights Reserved.</p>
</div>
</div>
</footer>
<!-- JavaScript -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script>
// Automatic Pop-Up Script
document.addEventListener("DOMContentLoaded", function () {
setTimeout(function () {
document.getElementById("popupForm").style.display = "block";
}, 2000); // Adjust the timing as needed
});
// Close Button Script
document.getElementById("closeBtn").onclick = function () {
document.getElementById("popupForm").style.display = "none";
};
</script>
</body>
</html>