-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
817 lines (791 loc) · 39.5 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
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
<!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">
<title>Trading Room</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/fontawesome.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/glightbox/dist/css/glightbox.min.css" />
<script src="https://cdn.jsdelivr.net/gh/mcstudios/glightbox/dist/js/glightbox.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
</head>
<body>
<!-- ////////////////////////////////////////////////////////////////////////////////////////
START SECTION 1 - THE NAVBAR SECTION
/////////////////////////////////////////////////////////////////////////////////////////////-->
<nav class="navbar navbar-expand-lg navbar-dark menu shadow fixed-top">
<div class="container">
<a class="navbar-brand" href="#">
<img src="images/logo.png" alt="logo image" height="50" width="260">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link active" aria-current="page" href="#">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#">Services</a></li>
<li class="nav-item"><a class="nav-link" href="#">Testimonials</a></li>
<li class="nav-item"><a class="nav-link" href="#">faq</a></li>
<li class="nav-item"><a class="nav-link" href="#">portfolio</a></li>
<li class="nav-item"><a class="nav-link" href="#">contact</a>
</li>
</ul>
<button type="button" class="rounded-pill btn-rounded">
+923 143288112
<span>
<i class="fas fa-phone-alt"></i>
</span>
</button>
</div>
</div>
</nav>
<!-- /////////////////////////////////////////////////////////////////////////////////////////////////
START SECTION 2 - THE INTRO SECTION
/////////////////////////////////////////////////////////////////////////////////////////////////////-->
<section id="home" class="intro-section">
<div class="container">
<div class="row align-items-center text-white">
<!-- START THE CONTENT FOR THE INTRO -->
<div class="col-md-6 intros text-start">
<h1 class="display-2">
<span class="display-2--intro">Hey!, Welcome to Trading Room</span>
<span class="display-2--description lh-base">
this is a multi-purpose responsive layout created with bootstrap v5.
(here your can place your description text)
</span>
</h1>
<button type="button" class="rounded-pill btn-rounded">Get in Touch
<span><i class="fas fa-arrow-right"></i></span>
</button>
</div>
<!-- START THE CONTENT FOR THE VIDEO -->
<div class="col-md-6 intros text-end">
<div class="video-box">
<img src="images/arts/Bitcoin _Flatline.png" alt="video illutration" class="img-fluid">
<a href="#" class="glightbox position-absolute top-50 start-50 translate-middle">
<span>
<i class="fas fa-play-circle"></i>
</span>
<span class="border-animation border-animation--border-1"></span>
<span class="border-animation border-animation--border-2"></span>
</a>
</div>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#ffffff" fill-opacity="1" d="M0,160L48,176C96,192,192,224,288,208C384,192,480,128,576,133.3C672,139,768,213,864,202.7C960,192,1056,96,1152,74.7C1248,53,1344,107,1392,133.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>
</section>
<!-- //////////////////////////////////////////////////////////////////////////////////////////////
START SECTION 3 - THE CAMPANIES SECTION
////////////////////////////////////////////////////////////////////////////////////////////////////-->
<section id="campanies" class="campanies">
<div class="container">
<div class="row text-center">
<h4 class="fw-bold lead mb-3">Trusted by campanies like</h4>
<div class="heading-line mb-5"></div>
</div>
</div>
<!-- START THE CAMPANIES CONTENT -->
<div class="container">
<div class="row">
<div class="col-md-4 col-lg-2">
<div class="campanies__logo-box shadow-sm">
<img src="images/campanies/campany-1.png" alt="Campany 1 logo" title="Campany 1 Logo" class="img-fluid">
</div>
</div>
<div class="col-md-4 col-lg-2">
<div class="campanies__logo-box shadow-sm">
<img src="images/campanies/campany-2.png" alt="Campany 2 logo" title="Campany 2 Logo" class="img-fluid">
</div>
</div>
<div class="col-md-4 col-lg-2">
<div class="campanies__logo-box shadow-sm">
<img src="images/campanies/campany-3.png" alt="Campany 3 logo" title="Campany 3 Logo" class="img-fluid">
</div>
</div>
<div class="col-md-4 col-lg-2">
<div class="campanies__logo-box shadow-sm">
<img src="images/campanies/campany-4.png" alt="Campany 4 logo" title="Campany 4 Logo" class="img-fluid">
</div>
</div>
<div class="col-md-4 col-lg-2">
<div class="campanies__logo-box shadow-sm">
<img src="images/campanies/campany-5.png" alt="Campany 5 logo" title="Campany 5 Logo" class="img-fluid">
</div>
</div>
<div class="col-md-4 col-lg-2">
<div class="campanies__logo-box shadow-sm">
<img src="images/campanies/campany-6.png" alt="Campany 6 logo" title="Campany 6 Logo" class="img-fluid">
</div>
</div>
</div>
</div>
</section>
<!-- //////////////////////////////////////////////////////////////////////////////////////////////
START SECTION 4 - THE SERVICES
///////////////////////////////////////////////////////////////////////////////////////////////////-->
<section id="services" class="services">
<div class="container">
<div class="row text-center">
<h1 class="display-3 fw-bold">Our Services</h1>
<div class="heading-line mb-1"></div>
</div>
<!-- START THE DESCRIPTION CONTENT -->
<div class="row pt-2 pb-2 mt-0 mb-3">
<div class="col-md-6 border-right">
<div class="bg-white p-3">
<h2 class="fw-bold text-capitalize text-center">
Our Services Range From Initial Design To Deployment Anywhere Anytime
</h2>
</div>
</div>
<div class="col-md-6">
<div class="bg-white p-4 text-start">
<p class="fw-light">
Lorem ipsum dolor sit amet consectetur architecto magni,
dicta maxime laborum temporibus dolorem esse doloremque illo quas nisi enim molestias.
Tempore ducimus molestiae in dolore enim.
</p>
</div>
</div>
</div>
</div>
<!-- START THE CONTENT FOR THE SERVICES -->
<div class="container">
<!-- START THE MARKETING CONTENT -->
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4">
<div class="services__content">
<div class="icon d-block fas fa-paper-plane"></div>
<h3 class="display-3--title mt-1">Marketing</h3>
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nisi, impedit rem,
doloremque autem quibusdam blanditiis harum alias hic accusantium
maxime atque ratione magni repellat?
</p>
<button type="button" class="rounded-pill btn-rounded border-primary">Learn more
<span><i class="fas fa-arrow-right"></i></span>
</button>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4 text-end">
<div class="services__pic">
<img src="images/services/Marketing _Monochromatic.png" alt="marketing illustration" class="img-fluid">
</div>
</div>
</div>
<!-- START THE CONTENT -->
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4 text-start">
<div class="services__pic">
<img src="images/services/Ethereum_Monochromatic.png" alt="web development illustration" class="img-fluid">
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4">
<div class="services__content">
<div class="icon d-block"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 320 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z"/></svg></div>
<h3 class="display-3--title mt-1">Ethereum</h3>
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nisi, impedit rem,
doloremque autem quibusdam blanditiis harum alias hic accusantium
maxime atque ratione magni repellat?
</p>
<button type="button" class="rounded-pill btn-rounded border-primary">Learn more
<span><i class="fas fa-arrow-right"></i></span>
</button>
</div>
</div>
</div>
<!-- START THE Crypto Currency CONTENT -->
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4">
<div class="services__content">
<div class="icon d-block"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"/></svg></div>
<h3 class="display-3--title mt-1">Crypto Currency</h3>
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nisi, impedit rem,
doloremque autem quibusdam blanditiis harum alias hic accusantium
maxime atque ratione magni repellat?
</p>
<button type="button" class="rounded-pill btn-rounded border-primary">Learn more
<span><i class="fas fa-arrow-right"></i></span>
</button>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 services mt-4 text-end">
<div class="services__pic">
<img src="images/services/Currency_Flatline.png" alt="Crypto Currency" class="img-fluid">
</div>
</div>
</div>
</div>
</section>
<!-- ////////////////////////////////////////////////////////////////////////////////////////////////
START SECTION 5 - THE TESTIMONIALS
/////////////////////////////////////////////////////////////////////////////////////////////////////-->
<section id="testimonials" class="testimonials">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#fff" fill-opacity="1" d="M0,96L48,128C96,160,192,224,288,213.3C384,203,480,117,576,117.3C672,117,768,203,864,202.7C960,203,1056,117,1152,117.3C1248,117,1344,203,1392,245.3L1440,288L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>
<div class="container">
<div class="row text-center text-white">
<h1 class="display-3 fw-bold">Testimonials</h1>
<hr style="width: 100px; height: 3px; " class="mx-auto">
<p class="lead pt-1">what our clients are saying</p>
</div>
<!-- START THE CAROUSEL CONTENT -->
<div class="row align-items-center">
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<!-- CAROUSEL ITEM 1 -->
<div class="carousel-item active">
<!-- testimonials card -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Placeat aut consequatur illo animi optio exercitationem doloribus eligendi iusto atque repudiandae. Distinctio.
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- client picture -->
<div class="testimonials__picture">
<img src="images/testimonials/hamza.jpg" alt="client-1 picture" class="rounded-circle img-fluid">
</div>
<!-- client name & role -->
<div class="testimonials__name">
<h3>Hamza Waheed</h3>
<p class="fw-light">CEO & founder</p>
</div>
</div>
<!-- CAROUSEL ITEM 2 -->
<div class="carousel-item">
<!-- testimonials card -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Placeat aut consequatur illo animi optio exercitationem doloribus eligendi iusto atque repudiandae. Distinctio.
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- client picture -->
<div class="testimonials__picture">
<img src="images/testimonials/Naveed_2.jpg" alt="client-4 picture" class="rounded-circle img-fluid">
</div>
<!-- client name & role -->
<div class="testimonials__name">
<h3>Muhammad Naveed</h3>
<p class="fw-light">C.T.O</p>
</div>
</div>
<!-- CAROUSEL ITEM 3 -->
<div class="carousel-item">
<!-- testimonials card -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Placeat aut consequatur illo animi optio exercitationem doloribus eligendi iusto atque repudiandae. Distinctio.
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- client picture -->
<div class="testimonials__picture">
<img src="images/testimonials/shazil.jpg" alt="client-4 picture" class="rounded-circle img-fluid">
</div>
<!-- client name & role -->
<div class="testimonials__name">
<h3>Muhammad Shazil</h3>
<p class="fw-light">Manager</p>
</div>
</div>
<!-- CAROUSEL ITEM 4 -->
<div class="carousel-item">
<!-- testimonials card -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Placeat aut consequatur illo animi optio exercitationem doloribus eligendi iusto atque repudiandae. Distinctio.
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- client picture -->
<div class="testimonials__picture">
<img src="images/testimonials/usama.jpg" alt="client-2 picture" class="rounded-circle img-fluid">
</div>
<!-- client name & role -->
<div class="testimonials__name">
<h3>Muhammad Usama</h3>
<p class="fw-light">Finance Manager</p>
</div>
</div>
<!-- CAROUSEL ITEM 5 -->
<div class="carousel-item">
<!-- testimonials card -->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left"></i>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Placeat aut consequatur illo animi optio exercitationem doloribus eligendi iusto atque repudiandae. Distinctio.
<i class="fas fa-quote-right"></i>
<div class="ratings p-1">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!-- client picture -->
<div class="testimonials__picture">
<img src="images/testimonials/talat.jpg" alt="client-3 picture" class="rounded-circle img-fluid">
</div>
<!-- client name & role -->
<div class="testimonials__name">
<h3>Talat Mehmood</h3>
<p class="fw-light">Global brand manager</p>
</div>
</div>
</div>
<div class="text-center">
<button class="btn btn-outline-light fas fa-long-arrow-alt-left" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
</button>
<button class="btn btn-outline-light fas fa-long-arrow-alt-right" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
</button>
</div>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#fff" fill-opacity="1" d="M0,96L48,128C96,160,192,224,288,213.3C384,203,480,117,576,117.3C672,117,768,203,864,202.7C960,203,1056,117,1152,117.3C1248,117,1344,203,1392,245.3L1440,288L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>
</section>
<!-- /////////////////////////////////////////////////////////////////////////////////////////////////
START SECTION 6 - THE FAQ
//////////////////////////////////////////////////////////////////////////////////////////////////////-->
<section id="faq" class="faq">
<div class="container">
<div class="row text-center">
<h1 class="display-3 fw-bold text-uppercase">faq</h1>
<div class="heading-line"></div>
<p class="lead">frequently asked questions, get knowledge befere hand</p>
</div>
<!-- ACCORDION CONTENT -->
<div class="row mt-5">
<div class="col-md-12">
<div class="accordion" id="accordionExample">
<!-- ACCORDION ITEM 1 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
How many different types of crypto-currency wallet are there?
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
<div class="accordion-body">
There are five main types of cryptocurrency wallets, namely desktop wallets, mobile wallets, online wallets, hardware wallets and paper wallets. You do not need a wallet if you are trading cryptocurrencies via a CFD account, only when you are buying them. Wallets are used to store, send and receive cryptocurrencies.
</div>
</div>
</div>
<!-- ACCORDION ITEM 2 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Is crypto-currency real money?
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExample">
<div class="accordion-body">
Cryptocurrencies are an alternative to traditional money. Today, some outlets accept cryptocurrencies as a form of payment. However, they bear little resemblance to other asset classes because they are intangible and extremely volatile. They are mainly used by traders for speculating on rises and falls in value.
</div>
</div>
</div>
<!-- ACCORDION ITEM 3 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
How can you describe about Ethereum?
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">
<div class="accordion-body">
Ethereum is a decentralized blockchain with smart contract functionality. Ether is the native cryptocurrency of the platform. Among cryptocurrencies, ether is second only to bitcoin in market capitalization. It is open-source software. Ethereum was conceived in 2013 by programmer Vitalik Buterin.
</div>
</div>
</div>
<!-- ACCORDION ITEM 4 -->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
What things are important in trading?
</button>
</h2>
<div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour" data-bs-parent="#accordionExample">
<div class="accordion-body">
Traders need research and analytical skills to monitor broad economic factors and day-to-day chart patterns that impact financial markets. The ability to focus and concentrate, particularly in a chaotic, fast-moving environment, is an underappreciated but crucial skill for traders.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ///////////////////////////////////////////////////////////////////////////////////////////////////
START SECTION 7 - THE PORTFOLIO
//////////////////////////////////////////////////////////////////////////////////////////////////////-->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="row text-center mt-5">
<h1 class="display-3 fw-bold text-capitalize">Latest work</h1>
<div class="heading-line"></div>
<p class="lead">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sint porro temporibus distinctio.
</p>
</div>
<!-- FILTER BUTTONS -->
<div class="row mt-5 mb-4 g-3 text-center">
<div class="col-md-12">
<button class="btn btn-outline-primary" type="button">All</button>
<button class="btn btn-outline-primary" type="button">websites</button>
<button class="btn btn-outline-primary" type="button">design</button>
<button class="btn btn-outline-primary" type="button">mockup</button>
</div>
</div>
<!-- START THE PORTFOLIO ITEMS -->
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/BMI_View1.png" alt="portfolio 1 image" title="portfolio 1 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>BMI Calculator</h4>
<p>A GUI Application for calculating BMI of the user.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/btn_Css_view1.png" alt="portfolio 2 image" title="portfolio 2 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>Button CSS Generator</h4>
<p>A GUI Application for generating css code for buttons.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/NotePad.png" alt="portfolio 3 image" title="portfolio 3 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>QNotePad</h4>
<p>A notepad application base on Qt framework compatible with windows, macOS and Linux.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/WindeployQt.png" alt="portfolio 4 image" title="portfolio 4 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>WindeployQt</h4>
<p>A GUI Application for deploying Qt based applications to microsoft windows.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-5.jpg" alt="portfolio 5 image" title="portfolio 5 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 5</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-6.jpg" alt="portfolio 6 image" title="portfolio 6 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 6</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-7.jpg" alt="portfolio 7 image" title="portfolio 7 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 7</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-8.jpg" alt="portfolio 8 image" title="portfolio 8 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 8</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-box shadow">
<img src="images/portfolio/portfolio-9.jpg" alt="portfolio 9 image" title="portfolio 9 picture" class="img-fluid">
<div class="portfolio-info">
<div class="caption">
<h4>project name goes here 9</h4>
<p>category project</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- /////////////////////////////////////////////////////////////////////////////////////////////////////////
START SECTION 8 - Contact US
/////////////////////////////////////////////////////////////////////////////////////////////////////////-->
<section id="contact" class="get-started">
<div class="container">
<div class="row text-center">
<h1 class="display-3 fw-bold text-capitalize">Contact US</h1>
<div class="heading-line"></div>
<p class="lh-lg">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Libero illum architecto modi.
</p>
</div>
<!-- START THE CTA CONTENT -->
<div class="row text-white">
<div class="col-12 col-lg-6 gradient shadow p-3">
<div class="cta-info w-100">
<h4 class="display-4 fw-bold">100% Satisfaction Guaranteed</h4>
<p class="lh-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam alias optio minima, tempore architecto sint ipsam dolore tempora facere laboriosam corrupti!
</p>
<h3 class="display-3--brief">What will be the next step?</h3>
<ul class="cta-info__list">
<li>We'll solve your issue.</li>
<li>we'll discuss it together.</li>
<li>let's start the discussion.</li>
</ul>
</div>
</div>
<div class="col-12 col-lg-6 bg-white shadow p-3">
<div class="form w-100 pb-2">
<h4 class="display-3--title mb-5">Message Us</h4>
<form action="#" class="row">
<div class="col-lg-6 col-md mb-3">
<input type="text" placeholder="Hamza" id="inputFirstName" class="shadow form-control form-control-lg">
</div>
<div class="col-lg-6 col-md mb-3">
<input type="text" placeholder="Waheed" id="inputLastName" class="shadow form-control form-control-lg">
</div>
<div class="col-lg-12 mb-3">
<input type="email" placeholder="traderoom@gmail.com" id="inputEmail" class="shadow form-control form-control-lg">
</div>
<div class="col-lg-12 mb-3">
<textarea name="message" placeholder="message..." id="message" rows="8" class="shadow form-control form-control-lg"></textarea>
</div>
<div class="text-center d-grid mt-1">
<button type="button" class="btn btn-primary rounded-pill pt-3 pb-3">
submit
<i class="fas fa-paper-plane"></i>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- ///////////////////////////////////////////////////////////////////////////////////////////
START SECTION 9 - THE FOOTER
///////////////////////////////////////////////////////////////////////////////////////////////-->
<footer class="footer">
<div class="container">
<div class="row">
<!-- CONTENT FOR THE MOBILE NUMBER -->
<div class="col-md-4 col-lg-4 contact-box pt-1 d-md-block d-lg-flex d-flex">
<div class="contact-box__icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-phone-call" viewBox="0 0 24 24" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2a16 16 0 0 1 -15 -15a2 2 0 0 1 2 -2" />
<path d="M15 7a2 2 0 0 1 2 2" />
<path d="M15 3a6 6 0 0 1 6 6" />
</svg>
</div>
<div class="contact-box__info">
<a href="#" class="contact-box__info--title">+923 14 3288112</a>
<p class="contact-box__info--subtitle"> Mon-Fri 9am-6pm</p>
</div>
</div>
<!-- CONTENT FOR EMAIL -->
<div class="col-md-4 col-lg-4 contact-box pt-1 d-md-block d-lg-flex d-flex">
<div class="contact-box__icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-mail-opened" viewBox="0 0 24 24" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<polyline points="3 9 12 15 21 9 12 3 3 9" />
<path d="M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10" />
<line x1="3" y1="19" x2="9" y2="13" />
<line x1="15" y1="13" x2="21" y2="19" />
</svg>
</div>
<div class="contact-box__info">
<a href="#" class="contact-box__info--title">traderoom@company.com</a>
<p class="contact-box__info--subtitle">Online support</p>
</div>
</div>
<!-- CONTENT FOR LOCATION -->
<div class="col-md-4 col-lg-4 contact-box pt-1 d-md-block d-lg-flex d-flex">
<div class="contact-box__icon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-map-2" viewBox="0 0 24 24" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<line x1="18" y1="6" x2="18" y2="6.01" />
<path d="M18 13l-3.5 -5a4 4 0 1 1 7 0l-3.5 5" />
<polyline points="10.5 4.75 9 4 3 7 3 20 9 17 15 20 21 17 21 15" />
<line x1="9" y1="4" x2="9" y2="17" />
<line x1="15" y1="15" x2="15" y2="20" />
</svg>
</div>
<div class="contact-box__info">
<a href="#" class="contact-box__info--title">Islamabad, Pakistan</a>
<p class="contact-box__info--subtitle">ISL i10/2, PK</p>
</div>
</div>
</div>
</div>
<!-- START THE SOCIAL MEDIA CONTENT -->
<div class="footer-sm" style="background-color: #212121;">
<div class="container">
<div class="row py-4 text-center text-white">
<div class="col-lg-5 col-md-6 mb-4 mb-md-0">
connect with us on social media
</div>
<div class="col-lg-7 col-md-6">
<a href="https://www.facebook.com/profile.php?id=100094255579069&mibextid=ZbWKwL"><i class="fab fa-facebook"></i></a>
<a href="https://twitter.com/Hmzi67"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/hmzi67"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/hamza-waheed-139354221/"><i class="fab fa-linkedin"></i></a>
<a href="https://instagram.com/code_hunts"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
<!-- START THE CONTENT FOR THE CAMPANY INFO -->
<div class="container mt-5">
<div class="row text-white justify-content-center mt-3 pb-3">
<div class="col-12 col-sm-6 col-lg-6 mx-auto">
<h5 class="text-capitalize fw-bold">Trade Room</h5>
<hr class="bg-white d-inline-block mb-4" style="width: 60px; height: 2px;">
<p class="lh-lg">
Designed and built with love using Bootstrap5 and SCSS by <a href="https://uxlabspk.github.io/codehunts/" style="color: rgb(45, 129, 202);"> Code HUNT'S</a> CEO <a href="https://github.com/hmzi67" style="color: rgb(45, 129, 202);"> Hamza Waheed Abbasi</a>. <br>
Currently v1.0.0
</p>
</div>
<div class="col-12 col-sm-6 col-lg-2 mb-4 mx-auto">
<h5 class="text-capitalize fw-bold">Products</h5>
<hr class="bg-white d-inline-block mb-4" style="width: 60px; height: 2px;">
<ul class="list-inline campany-list">
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
</ul>
</div>
<div class="col-12 col-sm-6 col-lg-2 mb-4 mx-auto">
<h5 class="text-capitalize fw-bold">useful links</h5>
<hr class="bg-white d-inline-block mb-4" style="width: 60px; height: 2px;">
<ul class="list-inline campany-list">
<li><a href="#"> Your Account</a></li>
<li><a href="#">Become an Affiliate</a></li>
<li><a href="#">create an account</a></li>
<li><a href="#">Help</a></li>
</ul>
</div>
<div class="col-12 col-sm-6 col-lg-2 mb-4 mx-auto">
<h5 class="text-capitalize fw-bold">contact</h5>
<hr class="bg-white d-inline-block mb-4" style="width: 60px; height: 2px;">
<ul class="list-inline campany-list">
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Lorem ipsum</a></li>
</ul>
</div>
</div>
</div>
<!-- START THE COPYRIGHT INFO -->
<div class="footer-bottom pt-5 pb-5">
<div class="container">
<div class="row text-center text-white">
<div class="col-12">
<div class="footer-bottom__copyright">
© 2023 <a href="#">Trade Room</a> | Created by <a href="https://github.com/hmzi67" target="_blank">Hamza Waheed Abbasi</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- BACK TO TOP BUTTON -->
<a href="#" class="shadow btn-primary rounded-circle back-to-top">
<i class="fas fa-chevron-up"></i>
</a>
<script src="assets/vendors/js/glightbox.min.js"></script>
<script type="text/javascript">
const lightbox = GLightbox({
'touchNavigation': true,
'href': 'https://www.youtube.com/watch?v=J9lS14nM1xg',
'type': 'video',
'source': 'youtube', //vimeo, youtube or local
'width': 900,
'autoPlayVideos': 'true',
});
</script>
<script src="assets/js/bootstrap.bundle.min.js"></script>
</body>
</html>