-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
321 lines (277 loc) · 13.5 KB
/
index.html
File metadata and controls
321 lines (277 loc) · 13.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elevate - Premium Athletic Footwear</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>
<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" class="active">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">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>
<section class="hero">
<div class="video-container">
<video autoplay muted loop id="hero-video">
<source src="video.mov" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="video-overlay"></div>
</div>
<div class="container">
<div class="hero-content">
<h1>Step Into Excellence</h1>
<p>Discover the perfect blend of style, comfort and performance with our premium athletic footwear collection.</p>
<a href="#new-arrivals" class="btn">Shop Now</a>
</div>
</div>
</section>
<section class="new-arrivals" id="new-arrivals">
<div class="container">
<h2 class="section-title">New Arrivals</h2>
<div class="products-grid">
<div class="product-card">
<div class="product-img">
<img src="https://static.nike.com/a/images/c_limit,w_592,f_auto/t_product_v1/f26ecf51-7c6b-40b0-8514-f056934a375e/NIKE+DUNK+LOW+RETRO.png" alt="Air Max Pulse">
</div>
<div class="product-details">
<h3 class="product-title">Air Max Pulse</h3>
<p class="product-category">Men's Running Shoes</p>
<p class="product-price">₹13,999</p>
<div class="product-buttons">
<button class="add-to-cart">Add to Cart</button>
<button class="view-details">View Details</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-img">
<img src="https://static.nike.com/a/images/c_limit,w_592,f_auto/t_product_v1/49df8bf2-7ceb-4942-9aa6-0526512fd139/WMNS+NIKE+FIELD+GENERAL.png" alt="Field General">
</div>
<div class="product-details">
<h3 class="product-title">Field General</h3>
<p class="product-category">Women's Casual Shoes</p>
<p class="product-price">₹8,999</p>
<div class="product-buttons">
<button class="add-to-cart">Add to Cart</button>
<button class="view-details">View Details</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-img">
<img src="https://static.nike.com/a/images/t_PDP_1728_v1/f_auto,q_auto:eco/1ce501d1-9de0-4a40-8a0b-792949fe0103/GIANNIS+IMMORTALITY+4+%28PS%29.png" alt="Giannis Immortality 4">
</div>
<div class="product-details">
<h3 class="product-title">Giannis Immortality 4</h3>
<p class="product-category">Kids' Casual Shoes</p>
<p class="product-price">₹17,999</p>
<div class="product-buttons">
<button class="add-to-cart">Add to Cart</button>
<button class="view-details">View Details</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-img">
<img src="https://static.nike.com/a/images/c_limit,w_592,f_auto/t_product_v1/9bcc4b56-2f7e-4916-bee0-9a508d010840/W+NIKE+V2K+RUN.png" alt="ZoomX Invincible">
</div>
<div class="product-details">
<h3 class="product-title">ZoomX Invincible</h3>
<p class="product-category">Men's Performance Shoes</p>
<p class="product-price">₹15,999</p>
<div class="product-buttons">
<button class="add-to-cart">Add to Cart</button>
<button class="view-details">View Details</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="categories">
<div class="container">
<div class="categories-grid">
<!-- Men Category -->
<a href="men.html" class="category-card">
<div class="category-img">
<img src="1.jpeg" alt="Men's Collection">
</div>
<div class="category-overlay">
<h3>Men</h3>
</div>
</a>
<a href="women.html" class="category-card">
<div class="category-img">
<img src="https://images.unsplash.com/photo-1588117305388-c2631a279f82?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&h=350&q=80" alt="Women's Collection">
</div>
<div class="category-overlay">
<h3>Women</h3>
</div>
</a>
<a href="kids.html" class="category-card">
<div class="category-img">
<img src="2.jpeg" alt="Kids' Collection">
</div>
<div class="category-overlay">
<h3>Kids</h3>
</div>
</a>
</div>
</div>
</section>
<section class="sale-banner">
<div class="container">
<a href="sale.html" class="banner-link">
<div class="banner-content">
<h2>Summer Sale</h2>
<p>Up to 50% off on selected items</p>
<span class="btn">Shop Now</span>
</div>
<div class="banner-img">
<img src="https://images.unsplash.com/photo-1515955656352-a1fa3ffcd111?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&h=400&q=80" alt="Sale Banner">
</div>
</a>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<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>
<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>
<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>
<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>
<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>
<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>
<script src="script.js"></script>
</body>
</html>