-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
693 lines (655 loc) · 38.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ProMan - Personal Portfolio HTML Template</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body data-bs-spy="scroll" data-bs-target=".navbar" data-bs-offset="51">
<!-- Spinner Start -->
<div id="spinner" class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner-border text-primary" style="width: 3rem; height: 3rem;" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<!-- Spinner End -->
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg bg-white navbar-light fixed-top shadow py-lg-0 px-4 px-lg-5 wow fadeIn" data-wow-delay="0.1s">
<a href="index.html" class="navbar-brand d-block d-lg-none">
<h1 class="text-primary fw-bold m-0">ProMan</h1>
</a>
<button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-between py-4 py-lg-0" id="navbarCollapse">
<div class="navbar-nav ms-auto py-0">
<a href="#home" class="nav-item nav-link active">Home</a>
<a href="#about" class="nav-item nav-link">About</a>
<a href="#skill" class="nav-item nav-link">Skills</a>
<a href="#service" class="nav-item nav-link">Services</a>
</div>
<a href="index.html" class="navbar-brand bg-secondary py-3 px-4 mx-3 d-none d-lg-block">
<h1 class="text-primary fw-bold m-0">ProMan</h1>
</a>
<div class="navbar-nav me-auto py-0">
<a href="#project" class="nav-item nav-link">Projects</a>
<a href="#team" class="nav-item nav-link">Team</a>
<a href="#testimonial" class="nav-item nav-link">Testimonial</a>
<a href="#contact" class="nav-item nav-link">Contact</a>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Header Start -->
<div class="container-fluid bg-light my-6 mt-0" id="home">
<div class="container">
<div class="row g-5 align-items-center">
<div class="col-lg-6 py-6 pb-0 pt-lg-0">
<h3 class="text-primary mb-3">I'm</h3>
<h1 class="display-3 mb-3">Jamel Cowan</h1>
<h2 class="typed-text-output d-inline"></h2>
<div class="typed-text d-none">Blockchain Developer</div>
<div class="d-flex align-items-center pt-5">
<a href="" class="btn btn-primary py-3 px-4 me-5">Download Resume</a>
<button type="button" class="btn-play" data-bs-toggle="modal"
data-src="https://www.youtube.com/embed/DWRcNpR6Kdc" data-bs-target="#videoModal">
<span></span>
</button>
<h5 class="ms-4 mb-0 d-none d-sm-block">Play Video</h5>
</div>
</div>
<div class="col-lg-6">
<img class="img-fluid" src="img/profile.png" alt="">
</div>
</div>
</div>
</div>
<!-- Header End -->
<!-- Video Modal Start -->
<div class="modal modal-video fade" id="videoModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content rounded-0">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Youtube Video</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- 16:9 aspect ratio -->
<div class="ratio ratio-16x9">
<iframe class="embed-responsive-item" src="" id="video" allowfullscreen allowscriptaccess="always"
allow="autoplay"></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Video Modal End -->
<!-- About Start -->
<div class="container-xxl py-6" id="about">
<div class="container">
<div class="row g-5">
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="d-flex align-items-center mb-5">
<div class="years flex-shrink-0 text-center me-4">
<h1 class="display-1 mb-0">15</h1>
<h5 class="mb-0">Years</h5>
</div>
<h3 class="lh-base mb-0">of working experience as a web designer & developer</h3>
</div>
<p class="mb-4">Stet no et lorem dolor et diam, amet duo ut dolore vero eos. No stet est diam rebum amet diam ipsum. Clita clita labore, dolor duo nonumy clita sit at, sed sit sanctus dolor eos.</p>
<p class="mb-3"><i class="far fa-check-circle text-primary me-3"></i>Afordable Prices</p>
<p class="mb-3"><i class="far fa-check-circle text-primary me-3"></i>High Quality Product</p>
<p class="mb-3"><i class="far fa-check-circle text-primary me-3"></i>On Time Project Delivery</p>
<a class="btn btn-primary py-3 px-5 mt-3" href="">Read More</a>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.5s">
<div class="row g-3 mb-4">
<div class="col-sm-6">
<img class="img-fluid rounded" src="img/about-1.jpg" alt="">
</div>
<div class="col-sm-6">
<img class="img-fluid rounded" src="img/about-2.jpg" alt="">
</div>
</div>
<div class="d-flex align-items-center mb-3">
<h5 class="border-end pe-3 me-3 mb-0">Happy Clients</h5>
<h2 class="text-primary fw-bold mb-0" data-toggle="counter-up">1234</h2>
</div>
<p class="mb-4">Stet no et lorem dolor et diam, amet duo ut dolore vero eos. No stet est diam amet diam ipsum clita labore dolor duo clita.</p>
<div class="d-flex align-items-center mb-3">
<h5 class="border-end pe-3 me-3 mb-0">Projects Completed</h5>
<h2 class="text-primary fw-bold mb-0" data-toggle="counter-up">1234</h2>
</div>
<p class="mb-0">Stet no et lorem dolor et diam, amet duo ut dolore vero eos. No stet est diam amet diam ipsum clita labore dolor duo clita.</p>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Expertise Start -->
<div class="container-xxl py-6 pb-5" id="skill">
<div class="container">
<div class="row g-5">
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<h1 class="display-5 mb-5">Skills & Experience</h1>
<p class="mb-4">Stet no et lorem dolor et diam, amet duo ut dolore vero eos. No stet est diam rebum amet diam ipsum clita dolor duo clita sit.</p>
<h3 class="mb-4">My Skills</h3>
<div class="row align-items-center">
<div class="col-md-6">
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">HTML</h6>
<h6 class="font-weight-bold">95%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-primary" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">CSS</h6>
<h6 class="font-weight-bold">85%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">PHP</h6>
<h6 class="font-weight-bold">90%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-danger" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">Javascript</h6>
<h6 class="font-weight-bold">90%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-danger" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">Angular JS</h6>
<h6 class="font-weight-bold">95%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-dark" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">Wordpress</h6>
<h6 class="font-weight-bold">85%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-info" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.5s">
<ul class="nav nav-pills rounded border border-2 border-primary mb-5">
<li class="nav-item w-50">
<button class="nav-link w-100 py-3 fs-5 active" data-bs-toggle="pill" href="#tab-1">Experience</button>
</li>
<li class="nav-item w-50">
<button class="nav-link w-100 py-3 fs-5" data-bs-toggle="pill" href="#tab-2">Education</button>
</li>
</ul>
<div class="tab-content">
<div id="tab-1" class="tab-pane fade show p-0 active">
<div class="row gy-5 gx-4">
<div class="col-sm-6">
<h5>UI Designer</h5>
<hr class="text-primary my-2">
<p class="text-primary mb-1">2000 - 2045</p>
<h6 class="mb-0">Apex Software Inc</h6>
</div>
<div class="col-sm-6">
<h5>Product Designer</h5>
<hr class="text-primary my-2">
<p class="text-primary mb-1">2000 - 2045</p>
<h6 class="mb-0">Apex Software Inc</h6>
</div>
<div class="col-sm-6">
<h5>Web Designer</h5>
<hr class="text-primary my-2">
<p class="text-primary mb-1">2000 - 2045</p>
<h6 class="mb-0">Apex Software Inc</h6>
</div>
<div class="col-sm-6">
<h5>Apps Designer</h5>
<hr class="text-primary my-2">
<p class="text-primary mb-1">2000 - 2045</p>
<h6 class="mb-0">Apex Software Inc</h6>
</div>
</div>
</div>
<div id="tab-2" class="tab-pane fade show p-0">
<div class="row gy-5 gx-4">
<div class="col-sm-6">
<h5>UI Design Course</h5>
<hr class="text-primary my-2">
<p class="text-primary mb-1">2000 - 2045</p>
<h6 class="mb-0">Cambridge University</h6>
</div>
<div class="col-sm-6">
<h5>IOS Development</h5>
<hr class="text-primary my-2">
<p class="text-primary mb-1">2000 - 2045</p>
<h6 class="mb-0">Cambridge University</h6>
</div>
<div class="col-sm-6">
<h5>Web Design</h5>
<hr class="text-primary my-2">
<p class="text-primary mb-1">2000 - 2045</p>
<h6 class="mb-0">Cambridge University</h6>
</div>
<div class="col-sm-6">
<h5>Apps Design</h5>
<hr class="text-primary my-2">
<p class="text-primary mb-1">2000 - 2045</p>
<h6 class="mb-0">Cambridge University</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Expertise End -->
<!-- Service Start -->
<div class="container-fluid bg-light my-5 py-6" id="service">
<div class="container">
<div class="row g-5 mb-5 wow fadeInUp" data-wow-delay="0.1s">
<div class="col-lg-6">
<h1 class="display-5 mb-0">My Services</h1>
</div>
<div class="col-lg-6 text-lg-end">
<a class="btn btn-primary py-3 px-5" href="">Hire Me</a>
</div>
</div>
<div class="row g-4">
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item d-flex flex-column flex-sm-row bg-white rounded h-100 p-4 p-lg-5">
<div class="bg-icon flex-shrink-0 mb-3">
<i class="fa fa-crop-alt fa-2x text-dark"></i>
</div>
<div class="ms-sm-4">
<h4 class="mb-3">Creative Design</h4>
<h6 class="mb-3">Start from <span class="text-primary">$199</span></h6>
<span>Stet lorem dolor diam amet vero eos. No stet est diam amet diam ipsum. Clita dolor duo clita sit sed sit dolor eos.</span>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="service-item d-flex flex-column flex-sm-row bg-white rounded h-100 p-4 p-lg-5">
<div class="bg-icon flex-shrink-0 mb-3">
<i class="fa fa-code-branch fa-2x text-dark"></i>
</div>
<div class="ms-sm-4">
<h4 class="mb-3">Graphic Design</h4>
<h6 class="mb-3">Start from <span class="text-primary">$199</span></h6>
<span>Stet lorem dolor diam amet vero eos. No stet est diam amet diam ipsum. Clita dolor duo clita sit sed sit dolor eos.</span>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item d-flex flex-column flex-sm-row bg-white rounded h-100 p-4 p-lg-5">
<div class="bg-icon flex-shrink-0 mb-3">
<i class="fa fa-code fa-2x text-dark"></i>
</div>
<div class="ms-sm-4">
<h4 class="mb-3">Web Design</h4>
<h6 class="mb-3">Start from <span class="text-primary">$199</span></h6>
<span>Stet lorem dolor diam amet vero eos. No stet est diam amet diam ipsum. Clita dolor duo clita sit sed sit dolor eos.</span>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="service-item d-flex flex-column flex-sm-row bg-white rounded h-100 p-4 p-lg-5">
<div class="bg-icon flex-shrink-0 mb-3">
<i class="fa fa-laptop-code fa-2x text-dark"></i>
</div>
<div class="ms-sm-4">
<h4 class="mb-3">UI/UX Design</h4>
<h6 class="mb-3">Start from <span class="text-primary">$199</span></h6>
<span>Stet lorem dolor diam amet vero eos. No stet est diam amet diam ipsum. Clita dolor duo clita sit sed sit dolor eos.</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Service End -->
<!-- Projects Start -->
<div class="container-xxl py-6 pt-5" id="project">
<div class="container">
<div class="row g-5 mb-5 align-items-center wow fadeInUp" data-wow-delay="0.1s">
<div class="col-lg-6">
<h1 class="display-5 mb-0">My Projects</h1>
</div>
<div class="col-lg-6 text-lg-end">
<ul class="list-inline mx-n3 mb-0" id="portfolio-flters">
<li class="mx-3 active" data-filter="*">All Projects</li>
<li class="mx-3" data-filter=".first">UI/UX Design</li>
<li class="mx-3" data-filter=".second">Graphic Design</li>
</ul>
</div>
</div>
<div class="row g-4 portfolio-container wow fadeInUp" data-wow-delay="0.1s">
<div class="col-lg-4 col-md-6 portfolio-item first">
<div class="portfolio-img rounded overflow-hidden">
<img class="img-fluid" src="img/project-1.jpg" alt="">
<div class="portfolio-btn">
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href="img/project-1.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href=""><i class="fa fa-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item second">
<div class="portfolio-img rounded overflow-hidden">
<img class="img-fluid" src="img/project-2.jpg" alt="">
<div class="portfolio-btn">
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href="img/project-2.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href=""><i class="fa fa-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item first">
<div class="portfolio-img rounded overflow-hidden">
<img class="img-fluid" src="img/project-3.jpg" alt="">
<div class="portfolio-btn">
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href="img/project-3.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href=""><i class="fa fa-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item second">
<div class="portfolio-img rounded overflow-hidden">
<img class="img-fluid" src="img/project-4.jpg" alt="">
<div class="portfolio-btn">
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href="img/project-4.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href=""><i class="fa fa-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item first">
<div class="portfolio-img rounded overflow-hidden">
<img class="img-fluid" src="img/project-5.jpg" alt="">
<div class="portfolio-btn">
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href="img/project-5.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href=""><i class="fa fa-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item second">
<div class="portfolio-img rounded overflow-hidden">
<img class="img-fluid" src="img/project-6.jpg" alt="">
<div class="portfolio-btn">
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href="img/project-6.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-lg-square btn-outline-secondary border-2 mx-1" href=""><i class="fa fa-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Projects End -->
<!-- Team Start -->
<div class="container-xxl py-6 pb-5" id="team">
<div class="container">
<div class="row g-5 mb-5 wow fadeInUp" data-wow-delay="0.1s">
<div class="col-lg-6">
<h1 class="display-5 mb-0">Team Members</h1>
</div>
<div class="col-lg-6 text-lg-end">
<a class="btn btn-primary py-3 px-5" href="">Contact Us</a>
</div>
</div>
<div class="row g-4">
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="team-item position-relative">
<img class="img-fluid rounded" src="img/team-1.jpg" alt="">
<div class="team-text bg-white rounded-end p-4">
<div>
<h5>Full Name</h5>
<span>Designer</span>
</div>
<i class="fa fa-arrow-right fa-2x text-primary"></i>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="team-item position-relative">
<img class="img-fluid rounded" src="img/team-2.jpg" alt="">
<div class="team-text bg-white rounded-end p-4">
<div>
<h5>Full Name</h5>
<span>Designer</span>
</div>
<i class="fa fa-arrow-right fa-2x text-primary"></i>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.5s">
<div class="team-item position-relative">
<img class="img-fluid rounded" src="img/team-3.jpg" alt="">
<div class="team-text bg-white rounded-end p-4">
<div>
<h5>Full Name</h5>
<span>Designer</span>
</div>
<i class="fa fa-arrow-right fa-2x text-primary"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Team End -->
<!-- Testimonial Start -->
<div class="container-fluid bg-light py-5 my-5" id="testimonial">
<div class="container-fluid py-5">
<h1 class="display-5 text-center mb-5 wow fadeInUp" data-wow-delay="0.1s">Testimonial</h1>
<div class="row justify-content-center">
<div class="col-lg-3 d-none d-lg-block">
<div class="testimonial-left h-100">
<img class="img-fluid wow fadeIn" data-wow-delay="0.1s" src="img/testimonial-1.jpg" alt="">
<img class="img-fluid wow fadeIn" data-wow-delay="0.3s" src="img/testimonial-2.jpg" alt="">
<img class="img-fluid wow fadeIn" data-wow-delay="0.5s" src="img/testimonial-3.jpg" alt="">
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.5s">
<div class="owl-carousel testimonial-carousel">
<div class="testimonial-item text-center">
<div class="position-relative mb-5">
<img class="img-fluid rounded-circle border border-secondary p-2 mx-auto" src="img/testimonial-1.jpg" alt="">
<div class="testimonial-icon">
<i class="fa fa-quote-left text-primary"></i>
</div>
</div>
<p class="fs-5 fst-italic">Dolores sed duo clita tempor justo dolor et stet lorem kasd labore dolore lorem ipsum. At lorem lorem magna ut et, nonumy et labore et tempor diam tempor erat.</p>
<hr class="w-25 mx-auto">
<h5>Client Name</h5>
<span>Profession</span>
</div>
<div class="testimonial-item text-center">
<div class="position-relative mb-5">
<img class="img-fluid rounded-circle border border-secondary p-2 mx-auto" src="img/testimonial-2.jpg" alt="">
<div class="testimonial-icon">
<i class="fa fa-quote-left text-primary"></i>
</div>
</div>
<p class="fs-5 fst-italic">Dolores sed duo clita tempor justo dolor et stet lorem kasd labore dolore lorem ipsum. At lorem lorem magna ut et, nonumy et labore et tempor diam tempor erat.</p>
<hr class="w-25 mx-auto">
<h5>Client Name</h5>
<span>Profession</span>
</div>
<div class="testimonial-item text-center">
<div class="position-relative mb-5">
<img class="img-fluid rounded-circle border border-secondary p-2 mx-auto" src="img/testimonial-3.jpg" alt="">
<div class="testimonial-icon">
<i class="fa fa-quote-left text-primary"></i>
</div>
</div>
<p class="fs-5 fst-italic">Dolores sed duo clita tempor justo dolor et stet lorem kasd labore dolore lorem ipsum. At lorem lorem magna ut et, nonumy et labore et tempor diam tempor erat.</p>
<hr class="w-25 mx-auto">
<h5>Client Name</h5>
<span>Profession</span>
</div>
</div>
</div>
<div class="col-lg-3 d-none d-lg-block">
<div class="testimonial-right h-100">
<img class="img-fluid wow fadeIn" data-wow-delay="0.1s" src="img/testimonial-1.jpg" alt="">
<img class="img-fluid wow fadeIn" data-wow-delay="0.3s" src="img/testimonial-2.jpg" alt="">
<img class="img-fluid wow fadeIn" data-wow-delay="0.5s" src="img/testimonial-3.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial End -->
<!-- Contact Start -->
<div class="container-xxl pb-5" id="contact">
<div class="container py-5">
<div class="row g-5 mb-5 wow fadeInUp" data-wow-delay="0.1s">
<div class="col-lg-6">
<h1 class="display-5 mb-0">Let's Work Together</h1>
</div>
<div class="col-lg-6 text-lg-end">
<a class="btn btn-primary py-3 px-5" href="">Say Hello</a>
</div>
</div>
<div class="row g-5">
<div class="col-lg-5 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<p class="mb-2">My office:</p>
<h3 class="fw-bold">123 Street, New York, USA</h3>
<hr class="w-100">
<p class="mb-2">Call me:</p>
<h3 class="fw-bold">+012 345 6789</h3>
<hr class="w-100">
<p class="mb-2">Mail me:</p>
<h3 class="fw-bold">[email protected]</h3>
<hr class="w-100">
<p class="mb-2">Follow me:</p>
<div class="d-flex pt-2">
<a class="btn btn-square btn-primary me-2" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-primary me-2" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-primary me-2" href=""><i class="fab fa-youtube"></i></a>
<a class="btn btn-square btn-primary me-2" href=""><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div class="col-lg-7 col-md-6 wow fadeInUp" data-wow-delay="0.5s">
<p class="mb-4">The contact form is currently inactive. Get a functional and working contact form with Ajax & PHP in a few minutes. Just copy and paste the files, add a little code and you're done. <a href="https://htmlcodex.com/contact-form">Download Now</a>.</p>
<form>
<div class="row g-3">
<div class="col-md-6">
<div class="form-floating">
<input type="text" class="form-control" id="name" placeholder="Your Name">
<label for="name">Your Name</label>
</div>
</div>
<div class="col-md-6">
<div class="form-floating">
<input type="email" class="form-control" id="email" placeholder="Your Email">
<label for="email">Your Email</label>
</div>
</div>
<div class="col-12">
<div class="form-floating">
<input type="text" class="form-control" id="subject" placeholder="Subject">
<label for="subject">Subject</label>
</div>
</div>
<div class="col-12">
<div class="form-floating">
<textarea class="form-control" placeholder="Leave a message here" id="message" style="height: 100px"></textarea>
<label for="message">Message</label>
</div>
</div>
<div class="col-12">
<button class="btn btn-primary py-3 px-5" type="submit">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Contact End -->
<!-- Map Start -->
<div class="container-xxl pt-5 px-0 wow fadeInUp" data-wow-delay="0.1s">
<div class="container-xxl pt-5 px-0">
<div class="bg-dark">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3001156.4288297426!2d-78.01371936852176!3d42.72876761954724!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4ccc4bf0f123a5a9%3A0xddcfc6c1de189567!2sNew%20York%2C%20USA!5e0!3m2!1sen!2sbd!4v1603794290143!5m2!1sen!2sbd"
frameborder="0" style="width: 100%; height: 450px; border:0;" allowfullscreen="" aria-hidden="false"
tabindex="0"></iframe>
</div>
</div>
</div>
<!-- Map End -->
<!-- Copyright Start -->
<div class="container-fluid bg-dark text-white py-4">
<div class="container">
<div class="row">
<div class="col-md-6 text-center text-md-start mb-3 mb-md-0">
© <a class="border-bottom text-secondary" href="#">Your Site Name</a>, All Right Reserved.
</div>
<div class="col-md-6 text-center text-md-end">
<!--/*** This template is free as long as you keep the footer author’s credit link/attribution link/backlink. If you'd like to use the template without the footer author’s credit link/attribution link/backlink, you can purchase the Credit Removal License from "https://htmlcodex.com/credit-removal". Thank you for your support. ***/-->
Designed By <a class="border-bottom text-secondary" href="https://htmlcodex.com">HTML Codex</a>
<br>Distributed By: <a class="border-bottom" href="https://themewagon.com" target="_blank">ThemeWagon</a>
</div>
</div>
</div>
</div>
</div>
<!-- Copyright End -->
<!-- Back to Top -->
<a href="#" class="btn btn-lg btn-primary btn-lg-square back-to-top"><i class="bi bi-arrow-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/typed/typed.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>