-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
738 lines (707 loc) · 42.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daniels</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700,800,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800" rel="stylesheet">
<!-- Bootstrap Framework -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="css/bootstrap-icons.min.css">
<!-- FontAwesome Library -->
<link rel="stylesheet" href="css/all.min.css">
<!-- Main StyleSheets -->
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
</head>
<body data-bs-spy="scroll" data-bs-target="#navbar-example">
<!-- Page Loading Overlay -->
<div class="loading-overlay">
<div class="loading-icon"></div>
</div>
<!-- Start of Navbar -->
<nav id="navbar-example" class="navbar navbar-expand-md bg-body-tertiary fixed-top py-3">
<div class="container-md">
<a class="navbar-brand text-uppercase" href="#">daniels</a>
<button class="navbar-toggler border-0" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav text-center ms-auto">
<li class="nav-item">
<a class="nav-link mb-4 mb-md-0" aria-current="page" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link mb-4 mb-md-0" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link mb-4 mb-md-0" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link mb-4 mb-md-0" href="#portfolio">Works</a>
</li>
<li class="nav-item">
<a class="nav-link mb-4 mb-md-0" href="#testimonials">Clients</a>
</li>
<li class="nav-item">
<a class="nav-link mb-4 mb-md-0" href="#team">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End of Navbar -->
<!-- Start of Home -->
<header id="home" class="min-vh-100 text-white">
<div class="overlay min-vh-100 d-flex align-items-center justify-content-center flex-column">
<h5 class="fw-bolder" style="font-size: 3.625rem;">Hello</h5>
<h1 class="my-4 text-center"><span class="fw-light">I Am </span></h1>
<div class="home-icons d-flex">
<a href="#"><i class="fa-brands fa-facebook-f"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
<a href="#"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="#"><i class="fa-brands fa-behance"></i></a>
<a href="#"><i class="fa-brands fa-youtube"></i></a>
</div>
</div>
</header>
<!-- End of Home -->
<!-- Start of About -->
<section id="about" class="py-5">
<div class="container-md py-5">
<div class="row gy-5">
<div class="col-lg-5">
<div class="about-img">
<img src="images/hero.jpg" alt="Profile Image" class="w-100">
</div>
</div>
<div class="col-lg-7">
<div class="about-content">
<h2 class="fw-bolder text-main-color">About Me.</h2>
<span class="text-black-50">UI / UX DESIGNER & WEB DEVELOPER</span>
<p class="text-lighter-color my-3">I am <b>Jerry Daniels</b> Lorem Ipsum is simply dummy text of
the printing and
typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever It has
survived not only five centuries, but also the leap into electronic but also the leap into
electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s
with the release of Letraset sheets containing
</p>
<div class="about-skills d-flex flex-column gap-4 my-5">
<div class="progress" role="progressbar" style="height: 25px">
<div class="progress-bar bg-dark">
<span>Web Design</span>
<span>95%</span>
</div>
</div>
<div class="progress" role="progressbar" style="height: 25px">
<div class="progress-bar bg-dark">
<span>Branding</span>
<span>80%</span>
</div>
</div>
<div class="progress" role="progressbar" style="height: 25px">
<div class="progress-bar bg-dark">
<span>Development</span>
<span>90%</span>
</div>
</div>
</div>
<a href="#" class="btn btn-outline-dark active mb-lg-0 mb-3">Download C.V</a>
<a href="#contact" class="btn btn-outline-dark mb-lg-0 mb-3">Contact Me</a>
</div>
</div>
</div>
</div>
</section>
<!-- End of About -->
<!-- Start of Services -->
<section id="services" class="bg-second-color py-5">
<div class="container-md py-5">
<div class="section-header mb-5">
<h2>Services.</h2>
</div>
<div class="row mt-5 gy-5">
<div class="col-lg-4">
<div class="service text-center bg-white d-flex flex-column rounded py-5 px-3">
<span><i class="fa-solid fa-laptop fa-2x"></i></span>
<h6 class="fw-bold fs-5 py-4 text-main-color">Web Design</h6>
<p class="text-lighter-color">
Lorem Ipsum is simply dummy text of the Lorem Ipsum has been the industry's standard dummy
text ever
</p>
</div>
</div>
<div class="col-lg-4">
<div class="service text-center bg-white d-flex flex-column rounded py-5 px-3">
<span>
<i class="fa-solid fa-bullhorn fa-2x"></i></span>
<h6 class="fw-bold fs-5 py-4 text-main-color">Branding</h6>
<p class="text-lighter-color">
Lorem Ipsum is simply dummy text of the Lorem Ipsum has been the industry's standard dummy
text ever
</p>
</div>
</div>
<div class="col-lg-4">
<div class="service text-center bg-white d-flex flex-column rounded py-5 px-3">
<span><i class="fa-solid fa-umbrella fa-2x"></i></span>
<h6 class="fw-bold fs-5 py-4 text-main-color">Development</h6>
<p class="text-lighter-color">
Lorem Ipsum is simply dummy text of the Lorem Ipsum has been the industry's standard dummy
text ever
</p>
</div>
</div>
<div class="col-lg-4">
<div class="service text-center bg-white d-flex flex-column rounded py-5 px-3">
<span><i class="fa-regular fa-gem fa-2x"></i></span>
<h6 class="fw-bold fs-5 py-4 text-main-color">Creative Design</h6>
<p class="text-lighter-color">
Lorem Ipsum is simply dummy text of the Lorem Ipsum has been the industry's standard dummy
text ever
</p>
</div>
</div>
<div class="col-lg-4">
<div class="service text-center bg-white d-flex flex-column rounded py-5 px-3">
<span><i class="fa-solid fa-tv fa-2x"></i></span>
<h6 class="fw-bold fs-5 py-4 text-main-color">Fully Responsive</h6>
<p class="text-lighter-color">
Lorem Ipsum is simply dummy text of the Lorem Ipsum has been the industry's standard dummy
text ever
</p>
</div>
</div>
<div class="col-lg-4">
<div class="service text-center bg-white d-flex flex-column rounded py-5 px-3">
<span><i class="fa-solid fa-camera fa-2x"></i></span>
<h6 class="fw-bold fs-5 py-4 text-main-color">Retina Ready</h6>
<p class="text-lighter-color">
Lorem Ipsum is simply dummy text of the Lorem Ipsum has been the industry's standard dummy
text ever
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End of Services -->
<!-- Start of Portfolio -->
<section id="portfolio" class="py-5">
<div class="container-md py-5">
<div class="section-header mb-5">
<h2>Portfolio.</h2>
</div>
<ul class="nav nav-pills mb-3 justify-content-center" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="pills-all-tab" data-bs-toggle="pill" data-bs-target="#pills-all"
type="button" role="tab" aria-controls="pills-all" aria-selected="true">All</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-brand-tab" data-bs-toggle="pill" data-bs-target="#pills-brand"
type="button" role="tab" aria-controls="pills-brand" aria-selected="false">Brand</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-design-tab" data-bs-toggle="pill" data-bs-target="#pills-design"
type="button" role="tab" aria-controls="pills-design" aria-selected="false">Design</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-graphic-tab" data-bs-toggle="pill"
data-bs-target="#pills-graphic" type="button" role="tab" aria-controls="pills-graphic"
aria-selected="false">Graphic</button>
</li>
</ul>
<!-- Slider Modal When Click on Zoom icon -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"><i
class="fa-solid fa-xmark"></i></button>
<div class="modal-body p-0">
<div id="carouselExampleIndicators" class="carousel slide">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/portfolio/1.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/portfolio/2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/portfolio/3.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/portfolio/4.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/portfolio/5.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="images/portfolio/6.jpg" class="d-block w-100" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button"
data-bs-target="#carouselExampleIndicators" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button"
data-bs-target="#carouselExampleIndicators" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="tab-content mt-5" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-all" role="tabpanel" aria-labelledby="pills-all-tab"
tabindex="0">
<div class="row gy-4">
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/1.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/2.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/3.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/4.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/5.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/6.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-brand" role="tabpanel" aria-labelledby="pills-brand-tab"
tabindex="0">
<div class="row gy-4">
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/4.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/6.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-design" role="tabpanel" aria-labelledby="pills-design-tab"
tabindex="0">
<div class="row gy-4">
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/2.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/5.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-graphic" role="tabpanel" aria-labelledby="pills-graphic-tab"
tabindex="0">
<div class="row gy-4">
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/1.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/3.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="portfolio-card position-relative">
<img src="images/portfolio/5.jpg" class="w-100" alt="Portfolio Image 1">
<div class="portfolio-card-overlay position-absolute bg-white">
<div class="d-flex align-items-center justify-content-center flex-column h-100">
<h6 class="fw-bold text-main-color text-uppercase mb-3">Web Design</h6>
<div class="portfolio-card-icons">
<a href="#"><i class="fa-solid fa-link"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"><i
class="fa-solid fa-magnifying-glass-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Portfolio -->
<!-- Start of Testimonials -->
<section id="testimonials" class="bg-second-color py-5">
<div class="container-md py-5">
<div class="section-header mb-5">
<h2>Testimonials.</h2>
</div>
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel" data-bs-touch="true">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/testi-1.jpg" class="d-block mx-auto rounded-circle" alt="...">
<div class="carousel-caption text-lighter-color position-static">
<p class="fw-light w-75 my-3 mx-auto">
Lorem Ipsum has been the industry's standard dummy text ever
since the when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
<h6 class="text-main-color fw-semibold">Alex Smith</h6>
<span style="font-size: 0.80rem; font-weight: 600;">Envato Customer</span>
</div>
</div>
<div class="carousel-item">
<img src="images/testi-2.jpg" class="d-block mx-auto rounded-circle" alt="...">
<div class="carousel-caption text-lighter-color position-static">
<p class="fw-light w-75 my-3 mx-auto">
Lorem Ipsum has been the industry's standard dummy text ever
since the when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
<h6 class="text-main-color fw-semibold">Alex Smith</h6>
<span style="font-size: 0.80rem; font-weight: 600;">Envato Customer</span>
</div>
</div>
<div class="carousel-item">
<img src="images/testi-3.jpg" class="d-block mx-auto rounded-circle" alt="...">
<div class="carousel-caption text-lighter-color position-static">
<p class="fw-light w-75 my-3 mx-auto">
Lorem Ipsum has been the industry's standard dummy text ever
since the when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
<h6 class="text-main-color fw-semibold">Alex Smith</h6>
<span style="font-size: 0.80rem; font-weight: 600;">Envato Customer</span>
</div>
</div>
</div>
<div class="carousel-indicators position-static">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active"
aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1"
aria-label="Slide 2" class="" aria-current="true"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2"
aria-label="Slide 3" class="" aria-current="true"></button>
</div>
</div>
</div>
</section>
<!-- End of Testimonials -->
<!-- Start of Counters -->
<section id="counters" class="py-5">
<div class="container-md">
<div class="row gy-5">
<div class="col-lg-3">
<div class="counters-item text-center">
<span><i class="fa-solid fa-users fa-2x"></i></span>
<h6 class="fs-2 my-3" style="font-weight: 900;">850</h6>
<p class="text-lighter-color fw-medium">Happy Customers</p>
</div>
</div>
<div class="col-lg-3">
<div class="counters-item text-center">
<span><i class="fa-solid fa-thumbs-up fa-2x"></i></span>
<h6 class="fs-2 my-3" style="font-weight: 900;">230</h6>
<p class="text-lighter-color fw-medium">Complete Projects</p>
</div>
</div>
<div class="col-lg-3">
<div class="counters-item text-center">
<span><i class="fa-solid fa-bullhorn fa-2x"></i></span>
<h6 class="fs-2 my-3" style="font-weight: 900;">9450</h6>
<p class="text-lighter-color fw-medium">Lines Of Code</p>
</div>
</div>
<div class="col-lg-3">
<div class="counters-item text-center">
<span><i class="fa-solid fa-cloud-arrow-down fa-2x"></i></span>
<h6 class="fs-2 my-3" style="font-weight: 900;">780</h6>
<p class="text-lighter-color fw-medium">Files Downloaded</p>
</div>
</div>
</div>
</div>
</section>
<!-- End of Counters -->
<!-- Start of Team -->
<section id="team" class="bg-second-color py-5">
<div class="container-md py-5">
<div class="section-header mb-5">
<h2>Our Team.</h2>
</div>
<div class="row gy-3">
<div class="col-lg-4 col-md-6">
<div class="team-card position-relative overflow-hidden">
<img src="images/1.jpg" class="w-100" alt="Blog 1">
<div class="team-card-overlay position-absolute bg-white">
<div
class="team-card-icons d-flex justify-content-evenly m-auto align-items-center h-100 w-50 ">
<a href="#" class="fs-5"><i class="fa-brands fa-facebook-f "></i></a>
<a href="#" class="fs-5"><i class="fa-brands fa-twitter "></i></a>
<a href="#" class="fs-5"><i class="fa-brands fa-pinterest "></i></a>
<a href="#" class="fs-5"><i class="fa-brands fa-linkedin "></i></a>
</div>
</div>
</div>
<div class="team-card-title text-center text-white py-3 rounded-bottom">
<h4>John Doe</h4>
<h5 class="text-uppercase fw-bold">front-end developer</h5>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="team-card position-relative overflow-hidden">
<img src="images/2.jpg" class="w-100" alt="Blog 1">
<div class="team-card-overlay position-absolute bg-white">
<div
class="team-card-icons d-flex justify-content-evenly m-auto align-items-center h-100 w-50 ">
<a href="#" class="fs-5"><i class="fa-brands fa-facebook-f "></i></a>
<a href="#" class="fs-5"><i class="fa-brands fa-twitter "></i></a>
<a href="#" class="fs-5"><i class="fa-brands fa-pinterest "></i></a>
<a href="#" class="fs-5"><i class="fa-brands fa-linkedin "></i></a>
</div>
</div>
</div>
<div class="team-card-title text-center text-white py-3 rounded-bottom">
<h4>John Doe</h4>
<h5 class="text-uppercase fw-bold">front-end developer</h5>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="team-card position-relative overflow-hidden">
<img src="images/1.jpg" class="w-100" alt="Blog 1">
<div class="team-card-overlay position-absolute bg-white">
<div
class="team-card-icons d-flex justify-content-evenly m-auto align-items-center h-100 w-50 ">
<a href="#" class="fs-5"><i class="fa-brands fa-facebook-f "></i></a>
<a href="#" class="fs-5"><i class="fa-brands fa-twitter "></i></a>
<a href="#" class="fs-5"><i class="fa-brands fa-pinterest "></i></a>
<a href="#" class="fs-5"><i class="fa-brands fa-linkedin "></i></a>
</div>
</div>
</div>
<div class="team-card-title text-center text-white py-3 rounded-bottom">
<h4>John Doe</h4>
<h5 class="text-uppercase fw-bold">front-end developer</h5>
</div>
</div>
</div>
</div>
</section>
<!-- End of Team -->
<!-- Start of Contact -->
<section id="contact" class="py-5">
<div class="container-md py-5">
<div class="section-header mb-5">
<h2>Contact Us.</h2>
</div>
<div class="row w-75 mx-auto my-5 gy-3">
<div class="col-lg-4">
<div class="contact-info text-center d-flex flex-column">
<span><i class="fa-solid fa-location-arrow fs-3"></i></span>
<h6 class="fw-bold my-3">Address</h6>
<p class="text-lighter-color fw-medium">6834 Hollywood Blvd - Los Angeles CA</p>
</div>
</div>
<div class="col-lg-4">
<div class="contact-info text-center d-flex flex-column">
<span><i class="fa-solid fa-envelope fs-3"></i></span>
<h6 class="fw-bold my-3">Email</h6>
<p class="text-lighter-color fw-medium text-break">mmoabdelbari@gmail.com</p>
</div>
</div>
<div class="col-lg-4">
<div class="contact-info text-center d-flex flex-column">
<span><i class="fa-solid fa-phone fs-3"></i></span>
<h6 class="fw-bold my-3">Phone</h6>
<p class="text-lighter-color fw-medium">+2 010 1311 7045</p>
</div>
</div>
</div>
<form action="">
<div class="row w-75 mx-auto">
<div class="col-lg-6">
<div class="mb-3">
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="Name">
</div>
</div>
<div class="col-lg-6">
<div class="mb-3">
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="Email">
</div>
</div>
<div class="col-12">
<div class="mb-3">
<textarea class="form-control" placeholder="Message" id="exampleFormControlTextarea1"
rows="6"></textarea>
</div>
</div>
<div class="col-12">
<button type="submit" class="btn btn-outline-dark active rounded">Submit</button>
</div>
</div>
</form>
</div>
</section>
<!-- End of Contact -->
<!-- Start of Footer -->
<footer class="bg-main-color py-4 text-center">
<p class="text-lighter-color mb-0">Copy Right 2018 © By Daniels All Rights Reserved</p>
</footer>
<!-- End of Footer -->
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>