forked from TripleT511/Portfolio_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
783 lines (778 loc) · 41.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Counter-Up/1.0.0/jquery.counterup.min.js"></script>
<script src=" https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/base.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap"
rel="stylesheet">
<title>Portfolio TripleT</title>
</head>
<body>
<div class="wrapper">
<header class="header" id="home">
<nav class="nav">
<div class="container">
<div class="nav__logo">
<a href="#">Triple T</a>
</div>
<ul class="nav__list" id="nav__menu">
<li class="nav__item">
<a href="#home" class="nav__link active">Home</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About</a>
</li>
<li class="nav__item">
<a href="#services" class="nav__link">Services</a>
</li>
<li class="nav__item">
<a href="#portfolio" class="nav__link">Portfolio</a>
</li>
<li class="nav__item">
<a href="#pricing" class="nav__link">Pricing</a>
</li>
<li class="nav__item nav__item--blog">
<a href="#blog" class="nav__link nav__link-arrow">blog</a>
<ul class="ul__list list-dk-blog">
<li class="ul__item"><a href="#" class="ul__link">Blog Home</a></li>
<li class="ul__item"><a href="#" class="ul__link">Blog Single</a></li>
</ul>
</li>
<li class="nav__item nav__item--pages">
<a href="#pages" class="nav__link nav__link-arrow">Pages</a>
<ul class="ul__list list-dk-pages">
<li class="ul__item"><a href="#" class="ul__link">Elements</a></li>
<li class="ul__item ul__item--2">
<a href="#" class="ul__link ul__link--level2">Level 2</a>
<ul class="ul__list">
<li class="ul__item"><a href="#" class="ul__link">Item One</a></li>
<li class="ul__item"><a href="#" class="ul__link">Item Two</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">contact</a>
</li>
</ul>
<div class="nav__menu-btn">
<div class="menu-btn-burger"></div>
</div>
<div class="overlay">
</div>
<ul class="nav__mobile">
<li class="nav__item">
<a href="#home" class="nav__link active">Home</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About</a>
</li>
<li class="nav__item">
<a href="#services" class="nav__link">Services</a>
</li>
<li class="nav__item">
<a href="#portfolio" class="nav__link">Portfolio</a>
</li>
<li class="nav__item">
<a href="#pricing" class="nav__link">Pricing</a>
</li>
<li class="nav__item">
<a href="#blog" class="nav__link .nav__item--blog">blog
</a>
<i class="fa fa-chevron-down show-blog" aria-hidden="true"></i>
<ul class="ul__list--mobile list-blogs">
<li class="ul__item"><a href="#" class="ul__link">Blog Home</a></li>
<li class="ul__item"><a href="#" class="ul__link">Blog Single</a></li>
</ul>
</li>
<li class="nav__item">
<a href="#pages" class="nav__link .nav__item--pages">Pages
</a>
<i class="fa fa-chevron-down show-pages" aria-hidden="true"></i>
<ul class="ul__list--mobile list-pages">
<li class="ul__item"><a href="#" class="ul__link">Elements</a></li>
<li class="ul__item ul__item--mobile2">
<a href="#" class="ul__link">Level 2 </a>
<i class="fa fa-chevron-down show-pages2" aria-hidden="true"></i>
<ul class="ul__list list-pages2">
<li class="ul__item"><a href="#" class="ul__link">Item One</a></li>
<li class="ul__item"><a href="#" class="ul__link">Item Two</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">contact</a>
</li>
</ul>
</div>
</nav>
</header>
<section class="banner">
<div class="container">
<div class="row align-items">
<div class="col col-lg-6 col-md-6 col-sm-12 banner__left">
<h6>THIS IS ME</h6>
<h1>TRAN THANH TAM</h1>
<p>You will begin to realise why this exercise is called the Dickens Pattern with reference to
the ghost showing Scrooge
some different futures.</p>
<a href="#" class="banner__link primary-btn">DISCOVER NOW</a>
</div>
<div class="col col-lg-6 col-md-6 col-sm-12 banner__right">
<img src="./avatar.png" alt="">
</div>
</div>
</div>
</section>
<section class="home__about home-pt" id="about">
<div class="container">
<div class="row align-items">
<div class="col col-lg-6 col-md-6 col-sm-12 about__left">
<img src="./about.png" alt="">
</div>
<div class="col col-lg-6 col-md-6 col-sm-12 about__right">
<h6>About me</h6>
<h1>PERSONAL DETAILS</h1>
<p>Here, I focus on a range of items and features that we use in life without giving them a
second thought. such as Coca
Cola. Dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut
labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco.
</p>
<a href="#" class="banner__link primary-btn">View Details</a>
</div>
</div>
</div>
</section>
<section class="home__services home-pt home-pb" id="services">
<div class="container">
<div class="row align-items content-center">
<div class="col col-lg-7">
<div class="title-text">
<h1>My Offered Services</h1>
<p>At about this time of year, some months after New Year’s resolutions
have been made and kept, or made and neglected.</p>
</div>
</div>
</div>
<div class="row align-items">
<div class="col col-lg-4 col-md-6 col-sm-12">
<div class="services__item">
<i class="fa fa-pie-chart" aria-hidden="true"></i>
<a href="#">
<h4 class="item__title">Web Design</h4>
</a>
<p class="item__content">"It is not because things are difficult that we do not dare; it is
because we do not dare that they are difficult."</p>
</div>
</div>
<div class="col col-lg-4 col-md-6 col-sm-12">
<div class="services__item">
<i class="fa fa-desktop" aria-hidden="true"></i>
<a href="#">
<h4 class="item__title">Web Development</h4>
</a>
<p class="item__content">"If you are an entrepreneur, you know that your success
cannot depend on the opinions of others. Like the wind, opinions."</p>
</div>
</div>
<div class="col col-lg-4 col-md-6 col-sm-12">
<div class="services__item">
<i class="fa fa-camera-retro" aria-hidden="true"></i>
<a href="#">
<h4 class="item__title">Photography</h4>
</a>
<p class="item__content">"Do you want to be even more successful? Learn to love learning and
growth. The more effort you put into improving your
skills."</p>
</div>
</div>
<div class="col col-lg-4 col-md-6 col-sm-12">
<div class="services__item">
<i class="fa fa-picture-o" aria-hidden="true"></i>
<a href="#">
<h4 class="item__title">Clipping Path</h4>
</a>
<p class="item__content">"Hypnosis quit smoking methods maintain caused quite a stir in the
medical world over the last two decades. There is a
lot of argument."</p>
</div>
</div>
<div class="col col-lg-4 col-md-6 col-sm-12">
<div class="services__item">
<i class="fa fa-tablet" aria-hidden="true"></i>
<a href="#">
<h4 class="item__title">Apps Interface</h4>
</a>
<p class="item__content">"Do you sometimes have the feeling that you’re running into the
same
obstacles over and over again? Many of my conflicts."</p>
</div>
</div>
<div class="col col-lg-4 col-md-6 col-sm-12">
<div class="services__item">
<i class="fa fa-rocket" aria-hidden="true"></i>
<a href="#">
<h4 class="item__title">Graphic Design</h4>
</a>
<p class="item__content">"You’ve heard the expression, “Just believe it and it will come.”
Well, technically, that is true, however, ‘believing’
is not just thinking that."</p>
</div>
</div>
</div>
</div>
</section>
<section class="fact home-pt home-pb">
<div class="container">
<div class="row align-items content-center">
<div class="col col-lg-3 col-md-6 col-sm-12 text-align fact-mb">
<h1 class="fact__number">3578</h1>
<p class="fact__content">Projects Completed</p>
</div>
<div class="col col-lg-3 col-md-6 col-sm-12 text-align fact-mb">
<h1 class="fact__number">5465</h1>
<p class="fact__content">Happy Clients</p>
</div>
<div class="col col-lg-3 col-md-6 col-sm-12 text-align fact-mb">
<h1 class="fact__number">4875</h1>
<p class="fact__content">Cups of Coffee</p>
</div>
<div class="col col-lg-3 col-md-6 col-sm-12 text-align fact-mb">
<h1 class="fact__number">511</h1>
<p class="fact__content">Real Proesionals</p>
</div>
</div>
</div>
</section>
<section class="home__portfolio home-pt home-pb" id="portfolio">
<div class="container">
<div class="row align-items content-center">
<div class="col col-lg-8 col-pd-70">
<div class="title-text">
<h1>Our Latest Featured Projects</h1>
<p>Who are in extremely love with eco friendly system.</p>
</div>
</div>
</div>
<div class="portfolio__list">
<ul>
<li class="list__filter active" data-filter="All">All</li>
<li class="list__filter" data-filter="Vector">Vector</li>
<li class="list__filter" data-filter="Raster">Raster</li>
<li class="list__filter" data-filter="UI">UI/UX</li>
<li class="list__filter" data-filter="Printing">Printing</li>
</ul>
</div>
<div class="portfolio__content">
<div class="row portfolio__items">
<div class="col col-lg-4 col-md-4 col-sm-12 portfolio__item Vector">
<div class="portfolio__single">
<div class="portfolio__img">
<div class="overlay__img">
</div>
<div class="portfolio__mid">
<a href="#" class="portfolio__link">
<i class="fa fa-search" aria-hidden="true"></i>
Creative Design
</a>
</div>
<img src="./port-1.jpg" alt="">
</div>
<div class="portfolio__tittle">
<h4 class="title__start">Computer</h4>
<div class="title__end">Vector</div>
</div>
</div>
</div>
<div class="col col-lg-4 col-md-4 col-sm-12 portfolio__item Vector">
<div class="portfolio__single">
<div class="portfolio__img">
<div class="overlay__img">
</div>
<div class="portfolio__mid">
<a href="#" class="portfolio__link">
<i class="fa fa-search" aria-hidden="true"></i>
Creative Design
</a>
</div>
<img src="./port-2.jpg" alt="">
</div>
<div class="portfolio__tittle">
<h4 class="title__start">Cyber</h4>
<div class="title__end">Vector</div>
</div>
</div>
</div>
<div class="col col-lg-4 col-md-4 col-sm-12 portfolio__item Vector">
<div class="portfolio__single">
<div class="portfolio__img">
<div class="overlay__img">
</div>
<div class="portfolio__mid">
<a href="#" class="portfolio__link">
<i class="fa fa-search" aria-hidden="true"></i>
Creative Design
</a>
</div>
<img src="./port-3.jpg" alt="">
</div>
<div class="portfolio__tittle">
<h4 class="title__start">Road</h4>
<div class="title__end">Vector</div>
</div>
</div>
</div>
<div class="col col-lg-4 col-md-4 col-sm-12 portfolio__item Raster">
<div class="portfolio__single">
<div class="portfolio__img">
<div class="overlay__img">
</div>
<div class="portfolio__mid">
<a href="#" class="portfolio__link">
<i class="fa fa-search" aria-hidden="true"></i>
Creative Design
</a>
</div>
<img src="./port-4.png" alt="">
</div>
<div class="portfolio__tittle">
<h4 class="title__start">Vacant Ground</h4>
<div class="title__end">Raster</div>
</div>
</div>
</div>
<div class="col col-lg-4 col-md-4 col-sm-12 portfolio__item UI">
<div class="portfolio__single">
<div class="portfolio__img">
<div class="overlay__img">
</div>
<div class="portfolio__mid">
<a href="#" class="portfolio__link">
<i class="fa fa-search" aria-hidden="true"></i>
Creative Design
</a>
</div>
<img src="./port-5.jpg" alt="">
</div>
<div class="portfolio__tittle">
<h4 class="title__start">Zoro</h4>
<div class="title__end">UI/UX</div>
</div>
</div>
</div>
<div class="col col-lg-4 col-md-4 col-sm-12 portfolio__item Printing">
<div class="portfolio__single">
<div class="portfolio__img">
<div class="overlay__img">
</div>
<div class="portfolio__mid">
<a href="#" class="portfolio__link">
<i class="fa fa-search" aria-hidden="true"></i>
Creative Design
</a>
</div>
<img src="./port-6.jpg" alt="">
</div>
<div class="portfolio__tittle">
<h4 class="title__start">Space</h4>
<div class="title__end">Printing</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="feedback home-pt home-pb">
<div class="container">
<div class="row align-items content-center">
<div class="col col-lg-8 col-pd-70">
<div class="title-text">
<h1>Client’s Feedback About Me</h1>
<p>It is very easy to start smoking but it is an uphill task to quit it. Ask any chain
smoker or even a person.</p>
</div>
</div>
</div>
<div class="row">
<div class="carousel owl-carousel" id="slider">
<div class="feedback__single owl__item">
<div class="feedback__img">
<img src="./client-1.jpg" alt="">
</div>
<div class="feedback__desc">
<p>Do you want to be even more successful? Learn to love learning and growth.
The more effort you put into improving your
skills, the bigger the payoff you.</p>
<h4>Doflamingo</h4>
<p>CEO at Facebook</p>
</div>
</div>
<div class="feedback__single owl__item">
<div class="feedback__img">
<img src="./client-2.jpg" alt="">
</div>
<div class="feedback__desc">
<p>A purpose is the eternal condition for success.
Every former smoker can tell you just how hard it is to stop smoking
cigarettes. However.</p>
<h4>Law</h4>
<p>CEO at Google</p>
</div>
</div>
<div class="feedback__single owl__item">
<div class="feedback__img">
<img src="./client-3.jpg" alt="">
</div>
<div class="feedback__desc">
<p>Do you want to be even more successful? Learn to love learning and growth.
The more effort you put into improving your
skills, the bigger the payoff you.</p>
<h4>Shanks</h4>
<p>CEO at Google</p>
</div>
</div>
<div class="feedback__single owl__item">
<div class="feedback__img">
<img src="./Client-4.jpg" alt="">
</div>
<div class="feedback__desc">
<p>A purpose is the eternal condition for success.
Every former smoker can tell you just how hard it is to stop smoking
cigarettes. However.</p>
<h4>Zoro</h4>
<p>CEO at Facebook</p>
</div>
</div>
<div class="feedback__single owl__item">
<div class="feedback__img">
<img src="./client-5.jpg" alt="">
</div>
<div class="feedback__desc">
<p>Do you want to be even more successful? Learn to love learning and growth.
The more effort you put into improving your
skills, the bigger the payoff you.</p>
<h4>Kid</h4>
<p>CEO at Google</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="price home-pt home-pb" id="pricing">
<div class="container">
<div class="row align-items content-center">
<div class="col col-lg-8 col-pd-70">
<div class="title-text">
<h1>Choose Your Plan</h1>
<p>When someone does something that
they know that they shouldn’t do, did they.</p>
</div>
</div>
</div>
<div class="row">
<div class="col col-lg-3 col-md-6 col-sm-12 price__item">
<div class="price__item--top">
<h1>01</h1>
<h4>Economy</h4>
<p>For the individuals</p>
</div>
<div class="price__item--mid">
<ul>
<li class="mid__item">Secure Online Transfer</li>
<li class="mid__item">Unlimited Styles for interface</li>
<li class="mid__item">Reliable Customer Service</li>
</ul>
</div>
<div class="price__item--bottom">
<h1>£199.00</h1>
<a href="#" class="item__btn">Buy Now</a>
</div>
</div>
<div class="col col-lg-3 col-md-6 col-sm-12 price__item">
<div class="price__item--top">
<h1>02</h1>
<h4>Business</h4>
<p>For the individuals</p>
</div>
<div class="price__item--mid">
<ul>
<li class="mid__item">Secure Online Transfer</li>
<li class="mid__item">Unlimited Styles for interface</li>
<li class="mid__item">Reliable Customer Service</li>
</ul>
</div>
<div class="price__item--bottom">
<h1>£299.00</h1>
<a href="#" class="item__btn">Buy Now</a>
</div>
</div>
<div class="col col-lg-3 col-md-6 col-sm-12 price__item">
<div class="price__item--top">
<h1>03</h1>
<h4>Premium</h4>
<p>For the individuals</p>
</div>
<div class="price__item--mid">
<ul>
<li class="mid__item">Secure Online Transfer</li>
<li class="mid__item">Unlimited Styles for interface</li>
<li class="mid__item">Reliable Customer Service</li>
</ul>
</div>
<div class="price__item--bottom">
<h1>£399.00</h1>
<a href="#" class="item__btn">Buy Now</a>
</div>
</div>
<div class="col col-lg-3 col-md-6 col-sm-12 price__item">
<div class="price__item--top">
<h1>04</h1>
<h4>Exclusive</h4>
<p>For the individuals</p>
</div>
<div class="price__item--mid">
<ul>
<li class="mid__item">Secure Online Transfer</li>
<li class="mid__item">Unlimited Styles for interface</li>
<li class="mid__item">Reliable Customer Service</li>
</ul>
</div>
<div class="price__item--bottom">
<h1>£499.00</h1>
<a href="#" class="item__btn">Buy Now</a>
</div>
</div>
</div>
</div>
</section>
<section class="home__blog home-pt home-pb" id="blog">
<div class="container">
<div class="row align-items content-center">
<div class="col col-lg-8 col-pd-70">
<div class="title-text">
<h1>Latest posts from our blog</h1>
<p>You may be a skillful, effective employer but if you don’t trust your personnel and the
opposite, then the chances of
improving and expanding the business</p>
</div>
</div>
</div>
<div class="row">
<div class="col col-lg-4 col-md-4 col-sm-12 blog__item">
<div class="blog__img">
<img src="./blog-1.jpg" alt="">
</div>
<div class="blog__mid">
<div class="mid__avt">
<img src="./client-1.jpg" alt="">
<a href="#">
<span>
Doflamingo</span></a>
</div>
<div class="mid__reaction">
17th Dec
<i class="fa fa-heart-o" aria-hidden="true"></i>
<span>1k</span>
<i class="fa fa-comment-o" aria-hidden="true"></i>
<span>998</span>
</div>
</div>
<a href="#" class="blog__link">
<h4>Break Through Self Doubt
And Fear</h4>
</a>
<p class="blog__content">
Dream interpretation has many forms; it can be done be done for the sake of fun, hobby or
can be taken up as a serious
career.
</p>
</div>
<div class="col col-lg-4 col-md-4 col-sm-12 blog__item">
<div class="blog__img">
<img src="./blog-2.jpg" alt="">
</div>
<div class="blog__mid">
<div class="mid__avt">
<img src="./client-2.jpg" alt="">
<a href="#">
<span>
Law</span></a>
</div>
<div class="mid__reaction">
20th Dec
<i class="fa fa-heart-o" aria-hidden="true"></i>
<span>7k8</span>
<i class="fa fa-comment-o" aria-hidden="true"></i>
<span>6k2</span>
</div>
</div>
<a href="#" class="blog__link">
<h4>Portable Fashion for
young women</h4>
</a>
<p class="blog__content">
You may be a skillful, effective employer but if you
don’t trust your personnel and the
opposite, then the chances of
improving.
</p>
</div>
<div class="col col-lg-4 col-md-4 col-sm-12 blog__item">
<div class="blog__img">
<img src="./blog-3.jpg" alt="">
</div>
<div class="blog__mid">
<div class="mid__avt">
<img src="./client-3.jpg" alt="">
<a href="#">
<span>Shanks</span></a>
</div>
<div class="mid__reaction">
25th Dec
<i class="fa fa-heart-o" aria-hidden="true"></i>
<span>9k4</span>
<i class="fa fa-comment-o" aria-hidden="true"></i>
<span>8k6</span>
</div>
</div>
<a href="#" class="blog__link">
<h4>Do Dreams Serve As
A Premonition</h4>
</a>
<p class="blog__content">
So many of us are demotivated to achieve anything.
Such people are not enthusiastic about
anything. They don’t want to
work involved.
</p>
</div>
</div>
</div>
</section>
<section class="pages home-pt home-pb" id="pages">
<div class="container">
<div class="row">
<div class="carousel owl-carousel not-dots" id="slider2">
<div class="pages__single owl__item">
<div class="pages__img">
<a href="#">
<img src="./pages-1.png" alt="">
</a>
</div>
</div>
<div class="pages__single owl__item">
<div class="pages__img">
<a href="#">
<img src="./pages-2.png" alt="">
</a>
</div>
</div>
<div class="pages__single owl__item">
<div class="pages__img">
<a href="#">
<img src="./pages-3.png" alt="">
</a>
</div>
</div>
<div class="pages__single owl__item">
<div class="pages__img">
<a href="#">
<img src="./pages-4.png" alt="">
</a>
</div>
</div>
<div class="pages__single owl__item">
<div class="pages__img">
<a href="#">
<img src="./pages-5.png" alt="">
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="lendautrang">
<div class="nutcuon">
<i class="fa fa-arrow-circle-up" aria-hidden="true"></i>
</div>
</div>
<footer class="footer home-pt home-pb" id="contact">
<div class="container">
<div class="row">
<div class="col col-lg-5 col-md-6 col-sm-6">
<div class="footer__single">
<h4>About Me</h4>
<p>We have tested a number of registry fix and clean utilities
and present our top 3 list on our site for your convenience.</p>
<p class="footer__single--text">
Copyright ©2021 All rights reserved | This template is made with
<i class="fa fa-heart-o" aria-hidden="true"></i> by
<a href="#" target="_blank">Colorlib</a>
</p>
</div>
</div>
<div class="col col-lg-5 col-md-6 col-sm-6">
<div class="footer__single footer__single--contact">
<h4>Newsletter</h4>
<p>Stay updated with our latest trends</p>
<div class="footer__contact">
<form method="post">
<div class="input__contact">
<input type="email" class="form-control" name="Email" id="Email"
placeholder="Enter Email Address" required>
<div class="input__contact--btn">
<button type="submit" class="btn">
<span>Send</span>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="col col-lg-2 col-md-6 col-sm-6">
<div class="footer__single">
<h4>Follow Me</h4>
<p>Let us be social</p>
<div class="footer__single--social align-items">
<a href="#" class="social__link">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="#" class="social__link">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
<a href="#" class="social__link">
<i class="fa fa-dribbble" aria-hidden="true"></i>
</a>
<a href="#" class="social__link">
<i class="fa fa-behance" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<script src="./js/script.js"></script>
</body>
</html>