-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
462 lines (419 loc) · 21.6 KB
/
index.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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Zanea</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Karla&family=Oswald&family=Sorts+Mill+Goudy:ital@0;1&display=swap"
rel="stylesheet">
<!-- Custom Stylesheet -->
<link rel="stylesheet" href="main.css">
</head>
<body>
<!-- NAVIGATION STARTS -->
<nav class="navbar primary navbar-primary navbar-expand-lg justify-content-between bg-light fixed-top m-0">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target=".dual-nav">
<span class="fa fa-bars" aria-hidden="true"></span>
</button>
<div class="navbar-collapse collapse dual-nav w-50 order-1 order-md-0">
<ul class="navbar-nav ml-4">
<li class="nav-item">
<a class="nav-link" href="#">SHOP</a><span class="sr-only">Home</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">ABOUT US</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">BLOG</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">CONTACT US</a>
</li>
</ul>
</div>
<a href="/" class="navbar-brand fixed-top mx-auto d-block text-center order-0 order-md-1 w-25"><img
src="images/logo.png" class="img-fluid" alt="logo"></a>
<div class="navbar-collapse collapse dual-nav w-50 order-2">
<ul class="nav navbar-nav ml-auto mr-4 flex-row">
<li class="nav-item ml-4">
<a href=""><span class="fal fa-envelope"></span></a>
</li>
<li class="nav-item ml-4">
<a href=""><span class="far fa-search"></span></a>
</li>
<li class="nav-item ml-4">
<a href=""><span class="fal fa-shopping-bag"></soan></a>
</li>
</ul>
</div>
</div>
</nav>
<!-- NAVIGATION ENDS -->
<!-- HERO SECTION STARTS -->
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="first-slider"></div>
<div class="carousel-caption">
<p>Welcome</p>
<h1 class="text-center">Let Your Feet Do The Talking</h3>
<p>Water proof technology</p>
<button type="button" class="shopping btn btn-warning">Start Shopping</button>
</div>
</div>
<div class="carousel-item">
<div class="second-slider"></div>
<div class="carousel-caption">
<p>New Arrivals</p>
<h1 class="text-center">Limited Editions</h3>
<p>Waxed WeatherSafe Suede</p>
<button type="button" class="shopping btn btn-warning">Start Shopping</button>
</div>
</div>
<div class="carousel-item">
<div class="third-slider"></div>
<div class="carousel-caption">
<p>Year-Round Favorite</p>
<h1 class="text-center">Step Into Comfort</h3>
<p>Handcrafted Dress Shoe Collection</p>
<button type="button" class="shopping btn btn-warning">Start Shopping</button>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- HERO SECTION ENDS -->
<!-- PRODUCT LIST STARTS -->
<div class="container pt-5 mt-5">
<p class="text-secondary text-center">Favorites</p>
<h2 class="text-primary text-center">Get a new leap of comfortable</h2>
<div class="row text-center">
<div class="d-block w-100 col-md-3 col-6"><img src="images/1item.jpg" class="w-75 ml-auto mr-auto img-fluid"
alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
</div>
<div class="d-block w-100 col-md-3 col-6"><img src="images/item2.png" class="w-75 ml-auto mr-auto img-fluid"
alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
</div>
<div class="d-block w-100 col-md-3 col-6"><img src="images/item3.png" class="w-75 ml-auto mr-auto img-fluid"
alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
</div>
<div class="d-block w-100 col-md-3 col-6"><img src="images/item4.png" class="w-75 ml-auto mr-auto img-fluid"
alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
</div>
</div>
</div>
<div class="container pt-5 mt-5 text-center">
<div class="row py-2">
<div class="col-md-6 m-auto py-3">
<p class="text-secondary">Boots</p>
<h2 class="text-primary">A moment of your style.</h2>
<button type="button" class="shopping btn btn-outline-warning btn-large">Start Shopping</button>
</div>
<div class="col-md-6">
<img src="images/item-5-garrett-sears-9AivhnOlws4-unsplash.jpg" class="img-fluid mb-5" alt="mens-boots">
</div>
</div>
<div class="row order py-2">
<div class="col-md-6 order-two">
<img src="images/item-6-anika-huizinga-MDsnUCaCDwo-unsplash.jpg" class="img-fluid mb-5"
alt="mens-boots">
</div>
<div class="col-md-6 m-auto py-3 order-one">
<p class="text-secondary">Casual</p>
<h2 class="text-primary">Shoes designed for living</h2>
<button type="button" class="shopping btn btn-outline-warning btn-large">Start Shopping</button>
</div>
</div>
<div class="row py-2">
<div class="col-md-6 m-auto py-3">
<p class="text-secondary">Comfort</p>
<h2 class="text-primary">Performance with comfort</h2>
<button type="button" class="shopping btn btn-outline-warning btn-large">Start Shopping</button>
</div>
<div class="col-md-6">
<img src="images/item-7-rosie-fraser-IPcGLLgcABk-unsplash.jpg" class="img-fluid mb-5" alt="mens-boots">
</div>
</div>
</div>
<div class="container pt-5 mt-5">
<p class="text-secondary text-center">Products</p>
<h2 class="text-primary text-center">Browse our Latest Styles</h2>
<div class="row text-center">
<div class="d-block w-100 col-6 col-md-3"><img src="images/item2.png" class="w-75 ml-auto mr-auto img-fluid"
alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
<button type="button" class="shopping btn btn-primary">Buy Now</button>
</div>
<div class="d-block w-100 col-6 col-md-3"><img src="images/item3.png" class="w-75 ml-auto mr-auto img-fluid"
alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
<button type="button" class="shopping btn btn-primary">Buy Now</button>
</div>
<div class="d-block w-100 col-6 col-md-3"><img src="images/item4.png"
class="w-75 ml-auto mr-auto img-fluid" alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
<button type="button" class="shopping btn btn-primary">Buy Now</button>
</div>
<div class="d-block w-100 col-6 col-md-3"><img src="images/item2.png" class="w-75 ml-auto mr-auto img-fluid"
alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
<button type="button" class="shopping btn btn-primary">Buy Now</button>
</div>
<div class="d-block w-100 col-6 col-md-3"><img src="images/item2.png" class="w-75 ml-auto mr-auto img-fluid"
alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
<button type="button" class="shopping btn btn-primary">Buy Now</button>
</div>
<div class="d-block w-100 col-6 col-md-3"><img src="images/item3.png" class="w-75 ml-auto mr-auto img-fluid"
alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
<button type="button" class="shopping btn btn-primary">Buy Now</button>
</div>
<div class="d-block w-100 col-6 col-md-3"><img src="images/item4.png"
class="w-75 ml-auto mr-auto img-fluid" alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
<button type="button" class="shopping btn btn-primary">Buy Now</button>
</div>
<div class="d-block w-100 col-6 col-md-3"><img src="images/item2.png" class="w-75 ml-auto mr-auto img-fluid"
alt="mens-boots">
<p class="text-center text-secondary pt-4">Boots</p>
<h4 class="text-primary">Trail Boots</h4>
<p class="text-primary font-weight-bold">$ 180.00 USD</p>
<button type="button" class="shopping btn btn-primary">Buy Now</button>
</div>
</div>
</div>
<div class="container pt-5 mt-5 text-center">
<div class="row">
<div class="col-md-12">
<p class="text-secondary text-center">Favorites</p>
<h2 class="text-primary text-center font-italic mx-5">“We make products that last, that are
beautiful
that will make you feel like walking in the clouds...”</h2>
</div>
</div>
</div>
<div class="container-fluid testimonial-img p-0"></div>
<div class="container pt-5 mt-5">
<p class="text-secondary text-center">Blog</p>
<h2 class="text-primary text-center">Our Latest News</h2>
<div class="card-deck">
<div class="card">
<img src="images/card-one-abbie-bernet-V362vbpwSJ4-unsplash.jpg" class="card-img-top" alt="mens-boots">
<div class="card-body bg-primary">
<p class="card-title text-light">Promo</h5>
<h4 class="card-text text-light">We Launched Zanea!
</h4>
<p class="card-text"><small class="text-light">Last updated 3 mins ago</small></p>
</div>
</div>
<div class="card">
<img src="images/card-two-riccardo-mion-03ienrf3rvY-unsplash.jpg" class="card-img-top" alt="mens-boots">
<div class="card-body bg-primary">
<p class="card-title text-light">Product</h5>
<h4 class="card-text text-light">What to Wear In This Season
</h4>
<p class="card-text"><small class="text-light">Last updated 3 mins ago</small></p>
</div>
</div>
<div class="card">
<img src="images/card-three-keenan-constance-2SDg8RmOfVg-unsplash (2).jpg" class="card-img-top"
alt="mens-boots">
<div class="card-body bg-primary">
<p class="card-title text-light">News</h5>
<h4 class="card-text text-light">Only this Week Get 20% Off
</h4>
<p class="card-text"><small class="text-light">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
<div class="container pt-5 mt-5 text-center">
<a href=""><span class="fab fa-instagram text-primary fa-3x"></span></a>
<h2 class="text-primary mt-3">@zanea_boots</h2>
</div>
<div class="container-fluid mt-3">
<div class="row">
<div class="col-6 col-md-3 p-2"><img src="images/ig-1-tyler-nix-hwjVboGwNtQ-unsplash.jpg" class="img-fluid"
alt="mens-boots"></div>
<div class="col-6 col-md-3 p-2"><img src="images/ig-2-matthew-tyler-UWUnVWo2KQY-unsplash.jpg"
class="img-fluid" alt="mens-boots">
</div>
<div class="col-6 col-md-3 p-2"><img src="images/ig-3-benjamin-rascoe-4PW3VB9de_Y-unsplash (1).jpg"
class="img-fluid" alt="mens-boots"></div>
<div class="col-6 col-md-3 p-2"><img
src="https://images.unsplash.com/photo-1577375960076-25ced81e4592?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=80"
class="img-fluid" alt="mens-boots">
</div>
</div>
</div>
<!-- PRODUCT LIST ENDS -->
<!-- Footer -->
<footer class="page-footer font-small mt-5 pt-4">
<!-- Footer Links -->
<div class="container text-center text-md-left">
<!-- Footer links -->
<div class="row text-center text-md-left mt-3 pb-3">
<!-- Grid column -->
<div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold text-muted">Zanea</h6>
<p class="text-muted">Zanea is a vertically integrated fashion brand, offering customer-oriented
fashion shoes and as the clients desired with trendy new arrivals at online store every day.
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none">
<!-- Grid column -->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold text-muted">Products</h6>
<p>
<a href="#!" class="text-muted">Winter</a>
</p>
<p>
<a href="#!" class="text-muted">Casual</a>
</p>
<p>
<a href="#!" class="text-muted">Hiking</a>
</p>
<p>
<a href="#!" class="text-muted">New Arrivals</a>
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none">
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold text-muted">Useful links</h6>
<p>
<a href="#!" class="text-muted">Your Account</a>
</p>
<p>
<a href="#!" class="text-muted">FAQ</a>
</p>
<p>
<a href="#!" class="text-muted">Shipping Rates</a>
</p>
<p>
<a href="#!" class="text-muted">Help</a>
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none">
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold text-muted">Contact</h6>
<p class="text-muted">
<span class="fas fa-home mr-3 text-muted"></span>Madrid, 10012, Spain</p>
<p class="text-muted">
<span class="fas fa-envelope mr-3 text-muted"></span> info@gmail.com</p>
<p class="text-muted">
<span class="fas fa-phone mr-3 text-muted"></span> +34 234 567 88</p>
<p class="text-muted">
<span class="fas fa-print mr-3 text-muted"></span> +34 234 567 89</p>
</div>
<!-- Grid column -->
</div>
<!-- Footer links -->
<hr>
<!-- Grid row -->
<div class="row d-flex align-items-center">
<!-- Grid column -->
<div class="col-md-7 col-lg-8">
<!--Copyright-->
<p class="text-center text-md-left text-muted">© 2020 Copyright:
<a href="https://www.eulagonzales.tech/">
<strong>eulagonzales.tech</strong>
</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-5 col-lg-4 ml-lg-0">
<!-- Social buttons -->
<div class="text-center text-md-right">
<ul class="list-unstyled list-inline">
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1">
<span class="fab fa-facebook-f"></span>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1">
<span class="fab fa-twitter"></span>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1">
<span class="fab fa-google-plus-g"></span>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1">
<span class="fab fa-linkedin-in"></span>
</a>
</li>
</ul>
</div>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
<!-- Footer Links -->
</footer>
<!-- Footer -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous">
</script>
<script src="main.js" async defer></script>
</body>
</html>