-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
348 lines (332 loc) · 19.8 KB
/
contact.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
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact Us - WineShop</title>
<link rel="icon" type="image/x-icon" href="Wine/logo.jpg">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome for Icons -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="main-navbar shadow-sm sticky-top">
<div class="top-navbar">
<div class="container-fluid">
<div class="row">
<div class="col-md-2 my-auto d-none d-sm-none d-md-block d-lg-block">
<h5 class="brand-name">Winery</h5>
</div>
<div class="col-md-5 my-auto">
<form role="search">
<div class="input-group">
<input type="search" placeholder="Search your product"
class="form-control d-none d-md-block" />
<button class="btn bg-white d-block d-md-none" type="button" data-bs-toggle="collapse"
data-bs-target="#searchCollapse">
<i class="fa fa-search"></i>
</button>
</div>
<div class="collapse" id="searchCollapse">
<input type="search" placeholder="Search your product" class="form-control mt-2" />
</div>
</form>
</div>
<div class="col-md-5 my-auto">
<ul class="nav justify-content-end">
<li class="nav-item">
<a class="nav-link" href="cart.html">
<i class="fa fa-shopping-cart"></i> Cart (<span id="cart-count">0</span>)
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<i class="fa fa-heart"></i> Wishlist (0)
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
<i class="fa fa-user"></i> Username
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#" aria-labelledby="profileLink"><i
class="fa fa-user"></i> Profile</a></li>
<li><a class="dropdown-item" href="#"><i class="fa fa-list"></i> My Orders</a></li>
<li><a class="dropdown-item" href="#"><i class="fa fa-heart"></i> My Wishlist</a>
</li>
<li><a class="dropdown-item" href="#"><i class="fa fa-shopping-cart"></i> My
Cart</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="#"><i class="fa fa-sign-out"></i> Logout</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand d-block d-sm-block d-md-none d-lg-none" href="#">
Winery
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="products.html">Product</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="contact.html">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cart.html">Cart (<span id="cart-count">0</span>)</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<!-- Main Section -->
<section class="elementor-section elementor-top-section elementor-section-stretched lt-featured">
<div class="elementor-container elementor-column-gap-default">
<div class="row">
<!-- Full Width Column -->
<div class="col-md-12 elementor-column elementor-col-100">
<div class="elementor-widget-wrap">
<!-- Inner Section -->
<section class="elementor-section elementor-inner-section">
<div class="elementor-container elementor-column-gap-default">
<!-- First Column (33% width) -->
<div class="col-md-4 elementor-column elementor-col-33">
<div class="elementor-widget-wrap">
<!-- Icon Box Widget -->
<div class="elementor-widget-icon-box">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-hang">
<i aria-hidden="true" class="fas fa-map-marker-alt"></i>
</span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>ADDRESS</span>
</h3>
<p class="elementor-icon-box-description">
262 Milacina Mrest Street.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Second Column (33% width) -->
<div class="col-md-4 elementor-column elementor-col-33">
<div class="elementor-widget-wrap">
<!-- Icon Box Widget -->
<div class="elementor-widget-icon-box">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-hang">
<i aria-hidden="true" class="fas fa-envelope"></i>
</span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>EMAIL</span>
</h3>
<p class="elementor-icon-box-description">
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Third Column (33% width) -->
<div class="col-md-4 elementor-column elementor-col-33">
<div class="elementor-widget-wrap">
<!-- Icon Box Widget -->
<div class="elementor-widget-icon-box">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-hang">
<i aria-hidden="true" class="fas fa-phone"></i>
</span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>PHONE</span>
</h3>
<p class="elementor-icon-box-description">
+84 3333 6789
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</section>
<section class="py-5">
<div class="container">
<h2 class="text-center mb-4">Contact Us</h2>
<div class="row">
<div class="col-md-6">
<div class="contact-form">
<h4>Get in Touch</h4>
<p>Have a question or need assistance? Send us a message, and we'll get back to you shortly.</p>
<form>
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" placeholder="Enter your name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" placeholder="Enter your email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" rows="4" placeholder="Write your message here" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</div>
</div>
<div class="col-md-6">
<div class="form-section">
<h4>Our Address</h4>
<p><strong>WineShop Inc.</strong></p>
<p>1234 Vine Street, Suite 100<br>
Cityville, ABC 12345<br>
United States</p>
<hr>
<h4>Phone & Email</h4>
<p><strong>Phone:</strong> (123) 456-7890</p>
<p><strong>Email:</strong> [email protected]</p>
</div>
<div class="form-section">
<h4>Follow Us</h4>
<p>Stay connected with us on social media for the latest updates and offers.</p>
<div class="social-icons">
<a href="https://www.facebook.com" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="https://www.twitter.com" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com" target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div>
<div class="footer-area">
<div class="container">
<div class="row">
<div class="col-md-3">
<h4 class="footer-heading">WineryShop</h4>
<div class="footer-underline"></div>
<p>
Each bottle tells a story of the land, the climate, and the passion behind its creation, making it a perfect choice for those who appreciate the finer things in life.
Indulge in the timeless elegance of classic wine – a true celebration of flavor, history, and sophistication. 🍷
</p>
</div>
<div class="col-md-3">
<h4 class="footer-heading">Quick Links</h4>
<div class="footer-underline"></div>
<div class="mb-2"><a href="index.html" class="text-white">Home</a></div>
<div class="mb-2"><a href="about.html" class="text-white">About Us</a></div>
<div class="mb-2"><a href="contact.html" class="text-white">Contact Us</a></div>
<div class="mb-2"><a href="products.html" class="text-white">Product</a></div>
<div class="mb-2"><a href="cart.html" class="text-white">Cart</a></div>
</div>
<div class="col-md-3">
<h4 class="footer-heading">Shop Now</h4>
<div class="footer-underline"></div>
<div class="mb-2"><a href="" class="text-white">Collections</a></div>
<div class="mb-2"><a href="" class="text-white">Trending Products</a></div>
<div class="mb-2"><a href="" class="text-white">New Arrivals Products</a></div>
<div class="mb-2"><a href="" class="text-white">Featured Products</a></div>
<div class="mb-2"><a href="cart.html" class="text-white">Cart</a></div>
</div>
<div class="col-md-3">
<h4 class="footer-heading">Reach Us</h4>
<div class="footer-underline"></div>
<div class="mb-2">
<p>
<i class="fa fa-map-marker"></i> 1234 Vine Street, Suite 100
Cityville, ABC 12345
United States
</p>
</div>
<div class="mb-2">
<a href="" class="text-white">
<i class="fa fa-phone"></i> +91 888-XXX-XXXX
</a>
</div>
<div class="mb-2">
<a href="" class="text-white">
<i class="fa fa-envelope"></i> [email protected]
</a>
</div>
</div>
</div>
</div>
</div>
<div class="copyright-area">
<div class="container">
<div class="row">
<div class="col-md-8">
<p class=""> © 2025 - WineryShop. All rights reserved.</p>
</div>
<div class="col-md-4">
<div class="social-media">
Get Connected:
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-instagram"></i></a>
<a href=""><i class="fa fa-youtube"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Bootstrap JS & FontAwesome -->
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>