-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
699 lines (699 loc) · 42.7 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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Musical Instrument Shop</title>
<!--Bootstrap-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<link href="css/reset.css" rel="stylesheet">
<link href="css/scss/style.css" rel="stylesheet">
</head>
<body>
<!--Nav section-->
<nav class="nav bg-black py-1 text-gray">
<div class="nav-container">
<ul class="nav-left mb-0 text-uppercase">
<li class="nav-brand me-2 me-sm-2 ms-3"><a href="#"><img src="assets/images/logo.svg" alt="zattix logo"></a></li>
<li class="active me-2 me-sm-2 ms-3"><a href="./index"><i class="fa fa-home me-1" aria-hidden="true"></i>home</a></li>
<li class="me-2 me-sm-2 ms-3"><a href="#"><i class="fas fa-th-list me-1"></i>purchase list</a></li>
<li class="me-2 me-sm-2 ms-3 d-none d-sm-block"><a href="./search.html"><i class="fas fa-search me-1"></i>Search</a></li>
<li class="d-none d-sm-block">
<button class="nav-button bg-red p-2 font-weight-bold text-white text-uppercase nav-link" type="button">sell musical instrument</button>
</li>
</ul>
<ul class="nav-account d-flex align-items-center mb-0">
<li class="nav-account-item me-2">
<a href="#" class="nav-account-notifications h6"><i class="fas fa-envelope"></i></a></li>
<li class="nav-account-avatar ms-2"><a href="#"><img class="rounded-circle" src="https://avatars.githubusercontent.com/u/50230297?s=60&v=4" alt="Account holder"></a></li>
</ul>
</div>
</nav>
<section class="showcase text-center py-5 px-2">
<div class="showcase-details text-white mb-4 mb-md-5 pt-md-4 mx-auto">
<h1 class="showcase-title text-uppercase font-weight-bold mb-0">Instruments</h1>
<p class="showcase-subtitle font-gotham-light">Buy and sell amazing crafted musical instrument</p>
</div>
<form action="./search.html" class="showcase-search-form font-helvetica px-4" method="get">
<select name="category" id="category" class="d-block w-100 py-2 px-3 text-gray mb-1 mb-md-0">
<option value="instruments">All categories</option>
<option value="instruments">Musical Instruments</option>
<option value="drums">Drums & Fluits</option>
<option value="pianos">Pianos & Strings</option>
<option value="locals">Local Instruments</option>
</select>
<input type="text" placeholder="What are you searching?" class="d-block w-100 py-2 px-3 text-gray mb-1 mb-md-0">
<input type="text" placeholder="Country/Region" class="d-block w-100 py-2 px-3 text-gray mb-1 mb-md-0">
<button class="showcase-search-button background-black text-gray py-2 px-4 ml-md-2 rounded"
type="submit">Search</button>
</form>
</section>
<!-- display-slide -->
<section class="slider my-3 mx-1 pb-3">
<h2 class="slider-section-title text-gray text-uppercase px-4 ml-3 mx-md-auto my-md-2">Instrument of the month</h2>
<div class="slider-flex-container d-flex align-items-center justify-content-center carousel slide" data-bs-touch="false" data-bs-interval="false">
<!-- prev-arrow -->
<a href="#" class="slider-arrow text-red border mr-2 mr-md-0 p-2 rounded-circle"><i
class="fas fa-angle-left"></i></a>
<div class="slider-container px-1 d-md-flex align-items-center justify-content-center">
<div class="slider-image pl-md-1 pl-lg-4">
<img src="./assets/images/delux-music-instru.jpeg" alt="Colored bird houses">
<div class="image-buttons position-absolute d-flex">
<button type="button" class="slider-image-button text-red background-black px-3 py-1"><i
class="fas fa-angle-left"></i></button>
<button type="button" class="slider-image-button text-red background-black px-3 py-1"><i
class="fas fa-angle-right"></i></button>
</div>
</div>
<div class="slider-details text-gray pl-md-4">
<h3 class="slider-title text-red h5 mt-3">Awesome Delux Piano</h3>
<p class="slider-description font-helvetica">It is a long established fact that a reader will be distracted
by the
readable
content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less
normal distribution of letters, as opposed to using 'Content here, content here', making it look like
readable
English.</p>
<p class="slider-author font-helvetica mb-0">By: <span class="text-gray font-gotham-light">John Doe</span>
</p>
<p class="slider-location font-helvetica">Location: <span class="text-gray font-gotham-light">London,
Europe</span></p>
<ul class="slider-buttons d-flex align-items-center">
<li><button type="button" class="slider-button button-primary">1750$</button></li>
<li><button type="button" class="slider-button button-primary"><i class="fas fa-shopping-cart"></i>
Buy</button>
</li>
</ul>
</div>
</div>
<!-- next-arrow -->
<a href="#" class="slider-arrow text-red ml-2 p-2 border rounded-circle"><i
class="fas fa-angle-right"></i></a>
</div>
</section>
<main class="main-section-container text-gray py-3 border-top border-bottom">
<!--new instrument category-->
<section class="articles font-helvetica px-1 mb-4">
<div class="articles-header border-bottom mb-2 px-2 d-flex align-items-center justify-content-between">
<h3 class="articles-title"><i class="fa fa-music me-2" aria-hidden="true"></i>Musical Instruments<span
class="articles-subtitle ml-1 font-helvetica-light d-none d-sm-inline">(Lorem, ipsum, dolor, consectetur,
adipiscing)</span>
</h3>
<a href="#" class="articles-header-link text-red">View all</a>
</div>
<div class="articles-container d-grid px-1 pb-md-5">
<!--articles-->
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/3-piece-drum.jpeg" alt="3piece special drum">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">3 Piece drums</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/bamboo-mus-instru.webp" alt="bamboo musical instrument">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Bamboo Musical Instrument</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/clarinet-mus-instru.jpeg" alt="clarinet musical instrument">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Clarinet musical instrument</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/delux-music-instru.jpeg" alt="delux piono">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Delux gallant Piano</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/hausa-mus-instru.jpeg" alt="delux piono">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Hausa Drum</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/home-teater.jpeg" alt="delux piono">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Home Theater Set</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
</div>
</section>
<!-- Drums & fluits sections -->
<section class="articles font-helvetica px-1 mb-4">
<div class="articles-header border-bottom mb-2 px-2 d-flex align-items-center justify-content-between">
<h3 class="articles-title"><i class="fa fa-music me-2" aria-hidden="true"></i>Drums & Fluits<span
class="articles-subtitle ml-1 font-helvetica-light d-none d-sm-inline">(Lorem, ipsum, dolor, consectetur,
adipiscing)</span>
</h3>
<a href="#" class="articles-header-link text-red">View all</a>
</div>
<div class="articles-container d-grid px-1 pb-md-5">
<!--articles-->
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/3-piece-drum.jpeg" alt="3piece special drum">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">3 Piece drums</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/military-cere-instru.jpeg" alt="3piece special drum">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">military-cere-trumpet</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/clarinet-mus-instru.jpeg" alt="delux piono">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Clarinet Fluit</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/hausa-mus-instru.jpeg" alt="bamboo musical instrument">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Hausa drum</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/drum-vib-instru.jpeg" alt="clarinet musical instrument">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Vibe Drums</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/local-mus-instru.jpeg" alt="delux piono">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Local drum</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
</div>
</section>
<!-- Pianos and strings -->
<section class="articles font-helvetica px-1 mb-4">
<div class="articles-header border-bottom mb-2 px-2 d-flex align-items-center justify-content-between">
<h3 class="articles-title"><i class="fa fa-music me-2" aria-hidden="true"></i>Pianos & Strings<span
class="articles-subtitle ml-1 font-helvetica-light d-none d-sm-inline">(Lorem, ipsum, dolor, consectetur,
adipiscing)</span>
</h3>
<a href="#" class="articles-header-link text-red">View all</a>
</div>
<div class="articles-container d-grid px-1 pb-md-5">
<!--articles-->
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/cort-guiters.jpeg" alt="cort-guiters">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Cort Guiter</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/acaustic-guiter.webp" alt="acaustic guiter">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Acaustic Guiter</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/delux-music-instru.jpeg" alt="bamboo musical instrument">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Delux Piano</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/indmusicinstru.jpeg" alt="Industry piano">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Industrial Piano</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/military-cere-instru.jpeg" alt="delux piono">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">3 pieces drum</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/metro-mus-instru.jpeg" alt="delux piono">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">3 pieces drum</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Europe</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
</div>
</section>
<!-- Locally made instrument -->
<section class="articles font-helvetica px-1 mb-4">
<div class="articles-header border-bottom mb-2 px-2 d-flex align-items-center justify-content-between">
<h3 class="articles-title"><i class="fa fa-music me-2" aria-hidden="true"></i>Local Instruments<span
class="articles-subtitle ml-1 font-helvetica-light d-none d-sm-inline">(Lorem, ipsum, dolor, consectetur,
adipiscing)</span>
</h3>
<a href="#" class="articles-header-link text-red">View all</a>
</div>
<div class="articles-container d-grid px-1 pb-md-5">
<!--articles-->
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/bamboo-mus-instru.webp" alt="bamboo inrtument">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Bamboo Musical Instrument</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> China, Asia</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/hausa-mus-instru.jpeg" alt="bamboo musical instrument">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Hausa Drum</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light">From:</span> Nigeria, Africa</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="#">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/local-mus-instru.jpeg" alt="Industry piano">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Local Drum</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Asia</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
<article class="article border bg-white rounded">
<div class="article-image">
<img src="./assets/images/metro-mus-instru.jpeg" alt="Metro stings">
</div>
<div class="article-details px-3">
<h4 class="article-title mt-2 mb-0">Metro Strings</h4>
<p class="article-tag text-red mb-1 font-weight-bold">Needs tightening</p>
<p class="article-location mb-1"><span class="font-helvetica-light ">From:</span> India, Asia</p>
<div class="article-options d-flex justify-content-between align-items-center mt-0">
<div class="article-button-container position-relative">
<button type="button" class="article-button border px-2">+</button>
<ul class="article-popover border text-center position-absolute rounded">
<li class="article-popover-item py-2"><a href="">Add to collection</a></li>
<li class="article-popover-item py-2 background-black text-white"><a href="">Send an enquiry</a></li>
<li class="article-popover-item py-2 position-relative"><a href="">More details</a></li>
</ul>
</div>
<span class="article-price text-red font-weight-bold">$599</span>
</div>
</div>
</article>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer text-gray p-3">
<div class="footer-main d-grid mx-auto">
<div class="footer-company">
<div class="footer-company-logo my-4 py-1 px-2 rounded"><img src="./assets/images/logo.svg" width="100" height="100" alt="Company logo"></div>
<p class="footer-company-description font-gotham-light mt-3">Sed ut perspiciatis unde omnis iste natus
error sit
voluptatem accusantium
doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto
beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit,
sed quia consequuntur magni dolores.</p>
</div>
<div class="footer-links">
<h4 class="footer-links-title text-uppercase text-red pb-2">Categories</h4>
<ul class="footer-links-group footer-group-double d-grid font-gotham-light">
<li><a href="#">Instrument</a></li>
<li><a href="#">Soundbars</a></li>
<li><a href="#">Electronica</a></li>
<li><a href="#">Real estate</a></li>
<li><a href="#">Sound system</a></li>
<li><a href="#">Electronica</a></li>
<li><a href="#">Real estate</a></li>
<li><a href="#">Automotive</a></li>
<li><a href="#">Electronica</a></li>
<li><a href="#">Real estate</a></li>
<li><a href="#">Automotive</a></li>
<li><a href="#">Muzical Display</a></li>
</ul>
</div>
<div class="footer-links">
<h4 class="footer-links-title text-uppercase text-red pb-2">Credits</h4>
<ul class="footer-links-group footer-group-single font-gotham-light d-grid">
<li><a href=" https://www.flaticon.com/free-icon/[email protected]">Pixel
Buddha</a></li>
<li><a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></li>
<li><a href="https://www.microverse.org/">Microverse</a></li>
<li><a href="https://www.behance.net/M_Awad">Mohammed Awad</a></li>
<li><a href="">Automotive</a></li>
<li><a href="">Electronica</a></li>
</ul>
</div>
<div class="footer-settings">
<div class="footer-setting mb-2">
<p><span class="footer-setting-label text-red me-2"> Language</span>
<a class="footer-setting-select px-3 py-2 text-gray border">
English
</a>
</p>
</div>
<div class="footer-setting mb-2">
<p><span class="footer-setting-label text-red me-2"> Location</span>
<a class="footer-setting-select px-3 py-2 text-gray border">
Nigeria
</a>
</p>
</div>
<div class="footer-setting mb-2">
<p><span class="footer-setting-label text-red me-2"> Currency</span>
<a class="footer-setting-select px-3 py-2 text-gray border">
US Dollars
</a>
</p>
</div>
</div>
</div>
<div class="footer-copyright d-md-flex justify-content-between align-items-center mx-auto">
<div class="footer-copyright-left">
<p class="font-helvetica-light text-center my-4">
This website is made with <i class="fas fa-heart text-danger"></i>
<br class="d-md-none">
by <a href="https://github.com/DanSam5k" class="font-weight-bold">Daniel Samuel</a>
<br class="d-md-none">
<span>© Copyright 2017- 2021</span>
</p>
</div>
<ul class="footer-copyright-right d-flex align-items-center justify-content-center my-3 h3">
<li class="me-3"><a href="#"><i class="fab fa-facebook"></i></a></li>
<li class="me-3"><a href="#"><i class="fab fa-linkedin"></i></a></li>
<li class="me-3"><a href="#"><i class="fab fa-twitter"></i></a></li>
<li class="me-3"><a href="#"><i class="fab fa-google"></i></a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
</footer>
<!--Bootstrap Bundle with popper-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
</body>
</html>