-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
737 lines (604 loc) · 34.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daniels</title>
<!--Favicon-->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<!--FontAwesome File-->
<link rel="stylesheet" href="cssHub/all.min.css">
<!--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 File-->
<link rel="stylesheet" href="cssHub/bootstrap.min.css">
<!--Main Styling File-->
<link rel="stylesheet" href="cssHub/style.css">
</head>
<body>
<!--Start Nav-bar Section-->
<nav class="navbar navbar-expand-lg bg-light position-fixed w-100 z-3 shadow-sm bg-body " id="nav-bar">
<div class="container">
<a class="navbar-brand fw-bold" href="index.html" >DANIELS</a>
<button class="navbar-toggler shadow-none " type="button" data-bs-toggle="collapse" data-bs-target="#navbar-links" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end text-center" id="navbar-links">
<ul class="navbar-nav text-light nav nav-pills">
<li class="nav-item px-3 ">
<a class="nav-link active px-0 pb-2 pb-lg-0" aria-current="page" href="#home">Home</a>
</li>
<li class="nav-item px-3">
<a class="nav-link px-0 pb-2 pb-lg-0" href="#about">About</a>
</li>
<li class="nav-item px-3">
<a class="nav-link px-0 pb-2 pb-lg-0" href="#services">Services</a>
</li>
<li class="nav-item px-3">
<a class="nav-link px-0 pb-2 pb-lg-0" href="#portfolio">Work</a>
</li>
<li class="nav-item px-3">
<a class="nav-link px-0 pb-2 pb-lg-0" href="#clients">Clients</a>
</li>
<li class="nav-item px-3 ">
<a class="nav-link px-0 pb-2 pb-lg-0" href="#team">Team</a>
</li>
<li class="nav-item px-3">
<a class="nav-link px-0 pb-2 pb-lg-0" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!--Whole App-->
<main data-bs-spy="scroll" data-bs-target="#nav-bar" class="w-100">
<!--Start Home Section-->
<section class="home d-flex flex-column justify-content-center align-items-center gap-3" id="home">
<h1 class="text-light text-center w-100 fw-bold">Hello</h1>
<div class="animation d-flex flex-column justify-content-center align-items-center gap-3 w-100 h-auto ">
<h2 class="text-center">
<span class="fs-2 text-light ">I Am</span>
<span class="typing text-light"> </span>
</h2>
<ul class="socials list-unstyled d-flex gap-3 mt-4">
<li>
<a href="#" class="text-light "><i class="fa-brands fa-facebook-f p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light"><i class="fa-brands fa-twitter p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light"><i class="fa-brands fa-linkedin p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light"><i class="fa-brands fa-behance p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light"><i class="fa-brands fa-youtube p-2 rounded-circle"></i></a>
</li>
</ul>
</div>
</section>
<!--Start About Section-->
<section class="about py-5 bg-body" id="about">
<div class="container py-5">
<div class="row gy-5">
<div class="col-lg-4 px-lg-3 ">
<div class="image position-relative ">
<img src="images/hero.jpg" alt="personal image" class="w-100">
</div>
</div>
<div class="col-lg-8 px-lg-3">
<div class="text px-lg-5">
<h2 class=" fw-bold">About Me.</h2>
<p class="text-muted fs-6">UI / UX DESIGNER & WEB DEVELOPER</p>
<p class="text-muted mt-4">
I am <span class="fw-bold">Jerry Daniels</span> 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="skills mt-5 d-flex flex-column gap-4">
<div class="progress">
<div class="progress-bar rounded-end-2 bg-black ">
<div class="content d-flex justify-content-between px-2">
<span class="name">Web Design</span>
<span class="percentage">95%</span>
</div>
</div>
</div>
<div class="progress">
<div class="progress-bar rounded-end-2 bg-black ">
<div class="content d-flex justify-content-between px-2">
<span class="name">Branding</span>
<span class="percentage">80%</span>
</div>
</div>
</div>
<div class="progress">
<div class="progress-bar rounded-end-2 bg-black ">
<div class="content d-flex justify-content-between px-2">
<span class="name">Development</span>
<span class="percentage">90%</span>
</div>
</div>
</div>
</div>
<div class="btns mt-5 d-flex gap-2">
<a href="#" class="btn border border-1 border-black bg-black text-white px-2">Download C.V</a>
<a href="#contact" class="btn border border-1 border-black px-3">Contact Me</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Start Services Section-->
<section class="services py-5 bg-light" id="services">
<div class="container py-5 d-flex flex-column gap-5">
<div class="row d-flex justify-content-center ">
<h2 class="header fs-1 fw-bold"> Services.</h2>
</div>
<div class="row g-4">
<div class="col-md-6 col-lg-4 px-1 px-md-3 text-center">
<div class="service d-flex flex-column gap-3 align-items-center bg-body px-3 py-5 rounded-3 shadow-sm ">
<i class="fa-solid fa-laptop fs-2 bg-light rounded-circle p-3"></i>
<h5 class="fw-bold">Web Design</h5>
<p class="text-muted">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-md-6 col-lg-4 px-1 px-md-3 text-center">
<div class="service d-flex flex-column gap-3 align-items-center bg-body px-3 py-5 rounded-3 shadow-sm ">
<i class="fa-solid fa-bullhorn fs-2 bg-light rounded-circle p-3"></i>
<h5 class="fw-bold">Branding</h5>
<p class="text-muted">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-md-6 col-lg-4 px-1 px-md-3 text-center">
<div class="service d-flex flex-column gap-3 align-items-center bg-body px-3 py-5 rounded-3 shadow-sm ">
<i class="fa-solid fa-umbrella fs-2 bg-light rounded-circle p-3"></i>
<h5 class="fw-bold">Development</h5>
<p class="text-muted">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-md-6 col-lg-4 px-1 px-md-3 text-center">
<div class="service d-flex flex-column gap-3 align-items-center bg-body px-3 py-5 rounded-3 shadow-sm ">
<i class="fa-regular fa-gem fs-2 bg-light rounded-circle p-3"></i>
<h5 class="fw-bold">Creative Design</h5>
<p class="text-muted">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-md-6 col-lg-4 px-1 px-md-3 text-center">
<div class="service d-flex flex-column gap-3 align-items-center bg-body px-3 py-5 rounded-3 shadow-sm ">
<i class="fa-solid fa-display fs-2 bg-light rounded-circle p-3"></i>
<h5 class="fw-bold">Fully Responsive</h5>
<p class="text-muted">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-md-6 col-lg-4 px-1 px-md-3 text-center">
<div class="service d-flex flex-column gap-3 align-items-center bg-body px-3 py-5 rounded-3 shadow-sm ">
<i class="fa-solid fa-camera fs-2 bg-light rounded-circle p-3"></i>
<h5 class="fw-bold">Retina Ready</h5>
<p class="text-muted">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>
<!--Start Portfolio Section-->
<section class="portfolio py-5" id="portfolio">
<div class="container py-5">
<div class="row d-flex justify-content-center ">
<h2 class="header fs-1 fw-bold"> Portfolio.</h2>
</div>
<div class="row g-3">
<ul class="nav nav-pills d-flex justify-content-center mb-3">
<li class="nav-item px-4">
<button class="nav-link fw-bold text-black position-relative active px-0" data-bs-toggle="pill" data-bs-target="#all">All</button>
</li>
<li class="nav-item px-4">
<button class="nav-link fw-bold text-black position-relative px-0" data-bs-toggle="pill" data-bs-target="#brand">Brand</button>
</li>
<li class="nav-item px-4">
<button class="nav-link fw-bold text-black position-relative px-0" data-bs-toggle="pill" data-bs-target="#design">Design</button>
</li>
<li class="nav-item px-4">
<button class="nav-link fw-bold text-black position-relative px-0" data-bs-toggle="pill" data-bs-target="#graphic">Graphic</button>
</li>
</ul>
<div class="row tab-content " id="pills-tabContent">
<div class="row g-3 tab-pane fade show active d-flex" id="all" role="tabpanel" aria-labelledby="pills-disabled-tab" tabindex="0">
<div class="col-md-6 col-lg-4 px-0 px-md-3">
<div class="image position-relative overflow-hidden">
<img src="images/1.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 px-md-3">
<div class="image position-relative overflow-hidden">
<img src="images/2.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 px-md-3">
<div class="image position-relative overflow-hidden">
<img src="images/3.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 px-md-3">
<div class="image position-relative overflow-hidden">
<img src="images/4.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 px-md-3">
<div class="image position-relative overflow-hidden">
<img src="images/5.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-0 px-md-3">
<div class="image position-relative overflow-hidden">
<img src="images/6.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="row g-3 tab-pane fade d-flex" id="brand" role="tabpanel" aria-labelledby="pills-disabled-tab" tabindex="0">
<div class="col-md-6 col-lg-4 px-3">
<div class="image position-relative overflow-hidden">
<img src="images/4.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-3">
<div class="image position-relative overflow-hidden">
<img src="images/6.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="row g-3 tab-pane fade d-flex" id="design" role="tabpanel" aria-labelledby="pills-disabled-tab" tabindex="0">
<div class="col-md-6 col-lg-4 px-3">
<div class="image position-relative overflow-hidden">
<img src="images/2.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-3">
<div class="image position-relative overflow-hidden">
<img src="images/5.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="row g-3 tab-pane fade d-flex" id="graphic" role="tabpanel" aria-labelledby="pills-disabled-tab" tabindex="0">
<div class="col-md-6 col-lg-4 px-3">
<div class="image position-relative overflow-hidden">
<img src="images/1.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-3">
<div class="image position-relative overflow-hidden">
<img src="images/3.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-3">
<div class="image position-relative overflow-hidden">
<img src="images/5.jpg" alt="work image" class="img-fluid">
<div class="content h-100 w-100 position-absolute start-0 top-0 z-2">
<h6 class="fw-bold position-absolute translate-middle-x ">WEB DESIGN</h6>
<div class="icons position-absolute translate-middle-x">
<a href="#" class=""><i class="fa-solid fa-link icon rounded-circle border border-1 border-black "></i></a>
<a href="#"><i class="fa-solid fa-magnifying-glass-plus icon rounded-circle border border-1 border-black "></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Start Client Section-->
<section class="clients py-5 bg-light " id="clients">
<div class="container py-5">
<div class="row d-flex justify-content-center ">
<h2 class="header fs-1 fw-bold"> Testimonials.</h2>
</div>
<div class="row justify-content-center ">
<div class="carousel slide py-5 col-lg-10" id="slider" data-bs-ride="carousel">
<div class="carousel-indicators">
<button data-bs-target="#slider" data-bs-slide-to="0" class="active bg-secondary rounded-circle me-2"></button>
<button data-bs-target="#slider" data-bs-slide-to="1" class=" bg-secondary rounded-circle me-2"></button>
<button data-bs-target="#slider" data-bs-slide-to="2" class=" bg-secondary rounded-circle me-2"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active text-center">
<img src="images/1 (1).jpg" alt="client image" class="rounded-circle mb-3">
<p class="text-muted">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Earum tenetur porro deserunt aut
laudantium aspernatur nihil recusandae! Laudantium, officia exercitationem?
</p>
<h5 class="fw-bold">Alex Smith</h5>
<p class="text-muted fw-bold">Envato Customer</p>
</div>
<div class="carousel-item text-center">
<img src="images/1 (1).jpg" alt="client image" class="rounded-circle mb-3">
<p class="text-muted">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Earum tenetur porro deserunt aut
laudantium aspernatur nihil recusandae! Laudantium, officia exercitationem?
</p>
<h5 class="fw-bold">Alex Smith</h5>
<p class="text-muted fw-bold">Envato Customer</p>
</div>
<div class="carousel-item text-center">
<img src="images/1 (1).jpg" alt="client image" class="rounded-circle mb-3">
<p class="text-muted">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Earum tenetur porro deserunt aut
laudantium aspernatur nihil recusandae! Laudantium, officia exercitationem?
</p>
<h5 class="fw-bold">Alex Smith</h5>
<p class="text-muted fw-bold">Envato Customer</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Start Achievements Section-->
<div class="achievements py-5">
<div class="container py-5">
<div class="row">
<div class="col-md-6 col-lg-3 text-center mb-5">
<i class="fa-solid fa-users fs-1"></i>
<div class="number fs-2 fw-bold m-3">850</div>
<div class="text fw-bold text-muted">Happy Customer</div>
</div>
<div class="col-md-6 col-lg-3 text-center mb-5">
<i class="fa-solid fa-thumbs-up fs-1"></i>
<div class="number fs-2 fw-bold m-3">230</div>
<div class="text fw-bold text-muted">Complete Projects</div>
</div>
<div class="col-md-6 col-lg-3 text-center mb-5">
<i class="fa-solid fa-bullhorn fs-1"></i>
<div class="number fs-2 fw-bold m-3">9450</div>
<div class="text fw-bold text-muted">Line Of Code</div>
</div>
<div class="col-md-6 col-lg-3 text-center mb-5">
<i class="fa-solid fa-cloud-arrow-down fs-1"></i>
<div class="number fs-2 fw-bold m-3">780</div>
<div class="text fw-bold text-muted">File Downloaded</div>
</div>
</div>
</div>
</div>
<!--Start Team Section-->
<section class="team py-5 bg-light" id="team">
<div class="container py-5">
<div class="row d-flex justify-content-center ">
<h2 class="header fs-1 fw-bold"> Our Team.</h2>
</div>
<div class="row pt-5 g-5">
<div class="col-md-6 col-lg-4 px-3">
<div class="member">
<div class="image position-relative p-0 overflow-hidden ">
<img src="images/1 (2).jpg" class="w-100 h-100" alt="team member image">
<div class="layer">
<ul class="socials list-unstyled d-flex gap-3 mt-4 icons position-absolute start-50 top-50 translate-middle z-2">
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-facebook-f p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-twitter p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-pinterest p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-linkedin p-2 rounded-circle"></i></a>
</li>
</ul>
</div>
</div>
<div class="text text-center py-3 bg-secondary text-light rounded-bottom-3 ">
<div class="name fs-4">John Doe</div>
<div class="position fw-bold fs-4">FRONT-END DEVELOPER</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-3">
<div class="member">
<div class="image position-relative p-0 overflow-hidden ">
<img src="images/2 (1).jpg" class="w-100 h-100" alt="team member image">
<div class="layer">
<ul class="socials list-unstyled d-flex gap-3 mt-4 icons position-absolute start-50 top-50 translate-middle z-2">
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-facebook-f p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-twitter p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-pinterest p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-linkedin p-2 rounded-circle"></i></a>
</li>
</ul>
</div>
</div>
<div class="text text-center py-3 bg-secondary text-light rounded-bottom-3 ">
<div class="name fs-4">Dave Wood</div>
<div class="position fw-bold fs-4">BACK-END DEVELOPER</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 px-3">
<div class="member">
<div class="image position-relative p-0 overflow-hidden ">
<img src="images/1 (2).jpg" class="w-100 h-100" alt="team member image">
<div class="layer">
<ul class="socials list-unstyled d-flex gap-3 mt-4 icons position-absolute start-50 top-50 translate-middle z-2">
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-facebook-f p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-twitter p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-pinterest p-2 rounded-circle"></i></a>
</li>
<li>
<a href="#" class="text-light icon rounded-circle border border-1 border-black"><i class="fa-brands fa-linkedin p-2 rounded-circle"></i></a>
</li>
</ul>
</div>
</div>
<div class="text text-center py-3 bg-secondary text-light rounded-bottom-3 ">
<div class="name fs-4">Claire Chedd</div>
<div class="position fw-bold fs-4">BACK-END DEVELOPER</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Start Contact Section-->
<section class="contact py-5" id="contact">
<div class="container py-5 d-flex flex-column align-items-center ">
<div class="row d-flex justify-content-center ">
<h2 class="header fs-1 fw-bold"> Contact Us.</h2>
</div>
<div class="methods row col-lg-10 justify-content-center align-items-center g-5 pt-5 ">
<div class="col-md-4 text-center ">
<i class="fa-solid fa-location-arrow bg-secondary-subtle rounded-circle fs-2 p-3 bg-secondary-subtle "></i>
<div class="title fs-5 fw-bold m-3">Address</div>
<div class="address text-muted">6834 Hollywood Blvd - Los Angeles CA</div>
</div>
<div class="col-md-4 text-center ">
<i class="fa-regular fa-envelope bg-secondary-subtle rounded-circle fs-2 p-3 bg-secondary-subtle "></i>
<div class="title fs-5 fw-bold m-3">Email</div>
<div class="address text-muted">Support@website.com</div>
</div>
<div class="col-md-4 text-center ">
<i class="fa-solid fa-phone bg-secondary-subtle rounded-circle fs-2 p-3 bg-secondary-subtle "></i>
<div class="title fs-5 fw-bold m-3">Phone</div>
<div class="address text-muted">+20 010 2517 8918</div>
</div>
</div>
<div class="form row col-lg-10 justify-content-center pt-5">
<form class="row gap-4">
<div class="col-lg p-0">
<input type="text" name="name" placeholder="Name" class="form-control shadow-none border-0 bg-secondary-subtle ">
</div>
<div class="col-lg p-0">
<input type="email" name="email" placeholder="Email" class="form-control shadow-none border-0 bg-secondary-subtle ">
</div>
<textarea name="message" placeholder="Message" class="col-12 form-control shadow-none border-0 bg-secondary-subtle"></textarea>
<button type="button" class="btn border border-1 border-black px-5">Submit</button>
</form>
</div>
</div>
</section>
<!--Start Footer Section-->
<footer class=" bg-black p-3 text-center">
<div>
Copy Right 2023 © Implemeneted by Ebram-Barsoum
</div>
<p>All Rights Reserved</p>
</footer>
</main>
<!--Bootstrap bundle file-->
<script src="jsHub/bootstrap.bundle.min.js"></script>
</body>
</html>