-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
353 lines (320 loc) · 15.2 KB
/
contact.html
File metadata and controls
353 lines (320 loc) · 15.2 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
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
349
350
351
352
353
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Elevate</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="navbar">
<a href="index.html" class="logo"> <img src="logo.1.png"></img></a>
<nav class="nav-links" id="navLinks">
<a href="index.html">Home</a>
<a href="men.html">Men</a>
<a href="women.html">Women</a>
<a href="kids.html">Kids</a>
<a href="sale.html">Sale</a>
<a href="about.html">About</a>
<a href="contact.html" class="active">Contact</a>
</nav>
<div class="nav-icons">
<a href="#" class="user-icon"><i class="fas fa-user"></i></a>
<div class="cart-count">
<a href="javascript:void(0);" onclick="showCart(); return false;" class="cart-icon"><i class="fas fa-shopping-cart"></i></a>
<span class="cart-badge" id="cartBadge">0</span>
</div>
<div class="menu-toggle" id="menuToggle">
<i class="fas fa-bars"></i>
</div>
</div>
</div>
</div>
</header>
<!-- Contact Hero Banner -->
<section class="hero page-hero" style="
background-image: url('https://www.shutterstock.com/image-photo/using-laptop-show-icon-address-600nw-2521386695.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: relative;
color: white;
text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
">
<div class="container">
<div class="hero-content">
<h1>Contact Us</h1>
<p>Get in touch with our customer service team.</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact-section">
<div class="container">
<div class="contact-grid">
<!-- Contact Information -->
<div class="contact-info">
<h2>Get In Touch</h2>
<p>We're here to help with any questions about our products, orders, or services.</p>
<div class="info-item">
<i class="fas fa-map-marker-alt"></i>
<div>
<h3>Visit Us</h3>
<p>Bandra Kurla Complex, Bandra East, Mumbai
<br>Maharashtra 421001</p>
</div>
</div>
<div class="info-item">
<i class="fas fa-phone-alt"></i>
<div>
<h3>Call Us</h3>
<p>+91 1011-1011-01<br>Monday-Friday, 9am-6pm IST</p>
</div>
</div>
<div class="info-item">
<i class="fas fa-envelope"></i>
<div>
<h3>Email Us</h3>
<p>support@Elevate.com<br>orders@Elevate.com</p>
</div>
</div>
<div class="social-contact">
<h3>Connect With Us</h3>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-pinterest"></i></a>
</div>
</div>
</div>
<!-- Contact Form -->
<div class="contact-form-container">
<h2>Send Us a Message</h2>
<form class="contact-form" id="contactForm">
<div class="form-group">
<label for="name">Your Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Your Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- FAQs Section -->
<section class="faq-section">
<div class="container">
<h2 class="section-title">Frequently Asked Questions</h2>
<div class="faq-container">
<div class="faq-item">
<div class="faq-question">
<h3>How do I track my order?</h3>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>You can track your order by logging into your account and going to the "Order History" section. Alternatively, you can use the tracking number sent to your email when your order ships.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<h3>What is your return policy?</h3>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>We offer a 30-day return policy for all unworn items in their original packaging. Shipping costs for returns are the customer's responsibility unless the item is defective.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<h3>How do I find my shoe size?</h3>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>We recommend using our size guide available on each product page. For the most accurate fit, measure your foot length in the evening (when feet are at their largest) and refer to our conversion chart.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<h3>Do you ship internationally?</h3>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>Yes, we ship to most countries worldwide. International shipping rates and delivery times vary depending on location. You can see shipping options at checkout.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<!-- Company Info -->
<div class="footer-column">
<h3>Elevate</h3>
<p>Premium athletic footwear for everyone. Quality, comfort, and style.</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-pinterest"></i></a>
</div>
</div>
<!-- Shop Links -->
<div class="footer-column">
<h3>Shop</h3>
<ul>
<li><a href="men.html">Men</a></li>
<li><a href="women.html">Women</a></li>
<li><a href="kids.html">Kids</a></li>
<li><a href="sale.html">Sale</a></li>
<li><a href="index.html">New Arrivals</a></li>
</ul>
</div>
<!-- Help Links -->
<div class="footer-column">
<h3>Help</h3>
<ul>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="https://www.delhivery.com/tracking">Order Tracking</a></li>
</ul>
</div>
<!-- Newsletter -->
<div class="footer-column">
<h3>Newsletter</h3>
<p>Subscribe to get special offers and updates on new arrivals.</p>
<form class="newsletter-form">
<div class="form-group">
<input type="email" placeholder="Your email" required>
<button type="submit"><i class="fas fa-arrow-right"></i></button>
</div>
</form>
</div>
</div>
<div class="copyright">
<p>© <span id="current-year">2025</span> Elevate. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Login Modal -->
<div id="login-modal" class="login-modal" style="display: none;">
<div class="login-modal-content">
<div class="login-modal-header">
<h3>My Account</h3>
<button class="close-login-modal">×</button>
</div>
<div class="login-modal-body">
<div class="auth-tabs">
<div class="auth-tab active" data-tab="login">Login</div>
<div class="auth-tab" data-tab="signup">Sign Up</div>
</div>
<div class="auth-form login-form active">
<div class="form-group">
<label for="login-username">Username</label>
<input type="text" id="login-username" class="form-control" required>
</div>
<div class="form-group">
<label for="login-password">Password</label>
<input type="password" id="login-password" class="form-control" required>
</div>
<div class="form-group">
<button type="submit" class="auth-button" id="login-button">Login</button>
</div>
<div class="form-footer">
<a href="#" class="forgot-password">Forgot Password?</a>
</div>
</div>
<div class="auth-form signup-form">
<div class="form-group">
<label for="signup-name">Full Name</label>
<input type="text" id="signup-name" class="form-control" required>
</div>
<div class="form-group">
<label for="signup-username">Username</label>
<input type="text" id="signup-username" class="form-control" required>
</div>
<div class="form-group">
<label for="signup-password">Password</label>
<input type="password" id="signup-password" class="form-control" required>
</div>
<div class="form-group">
<button type="submit" class="auth-button" id="signup-button">Create Account</button>
</div>
</div>
</div>
</div>
</div>
<!-- Profile Modal -->
<div id="profile-modal" class="profile-modal" style="display: none;">
<div class="profile-modal-content">
<div class="profile-modal-header">
<h3>My Profile</h3>
<button class="close-profile-modal">×</button>
</div>
<div class="profile-modal-body">
<div class="profile-info">
<div class="profile-avatar">
<i class="fas fa-user-circle"></i>
</div>
<h3 id="profile-name"></h3>
<p id="profile-username"></p>
</div>
<div class="profile-details">
<button id="logout-button" class="btn btn-dark">Logout</button>
</div>
</div>
</div>
</div>
<!-- JavaScript -->
<script src="script.js"></script>
<script>
// FAQ toggle functionality
document.addEventListener('DOMContentLoaded', function() {
const faqQuestions = document.querySelectorAll('.faq-question');
faqQuestions.forEach(question => {
question.addEventListener('click', function() {
const answer = this.nextElementSibling;
const icon = this.querySelector('i');
// Toggle answer visibility
if (answer.style.maxHeight) {
answer.style.maxHeight = null;
icon.classList.replace('fa-chevron-up', 'fa-chevron-down');
} else {
answer.style.maxHeight = answer.scrollHeight + 'px';
icon.classList.replace('fa-chevron-down', 'fa-chevron-up');
}
});
});
// Contact form submission
const contactForm = document.getElementById('contactForm');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
// In a real implementation, you would send the form data to a server
// For now, we'll just show a success message
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
}
});
</script>
</body>
</html>