-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
866 lines (779 loc) · 31.2 KB
/
index.html
File metadata and controls
866 lines (779 loc) · 31.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!-- bootstrap css-->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<!--font awesome icons-->
<script src="./js/all.js"></script>
<!--Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Arvo:700|Righteous&display=swap" rel="stylesheet">
<!--Main CSS-->
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<!--Navbar Section-->
<nav class="navbar py-3 navbar-light navbar-expand-sm bg-primary">
<!--logo-->
<a href="#" class="navbar-brand text-uppercase font-italic">the web agency</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarLinks">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarLinks">
<ul class="navbar-nav">
<li class="nav-item active"><a href="#header" class="nav-link">home</a></li>
<li class="nav-item"><a href="#skills" class="nav-link">skills</a></li>
<li class="nav-item"><a href="#about" class="nav-link">about</a></li>
<li class="nav-item"><a href="#projects" class="nav-link">projects</a></li>
</ul>
</div>
</nav>
<!--End of Navbar Section-->
<!--HEADER SECTION-->
<header id="header" class="bg-dark">
<div class="container">
<div class="row height align-items-center">
<div class="col">
<h1 class="text-danger text-uppercase font-weight-bold font-italic">
<strong>the web dev agency</strong>
<small class="text-light">website</small>
</h1>
<p class="text-muted lead py-2 w-75">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Placeat ad illo
quaerat. Quasi deleniti inventore quaerat illum. Eaque, explicabo ipsa?</p>
<a href="#" class="btn btn-outline-primary btn-lg m-2 text-capitalize">press here</a>
<a href="#" class="btn btn-outline-success btn-lg m-2 text-capitalize">press here</a>
</div>
</div>
</div>
</header>
<!--END OF HEADER-->
<!--SKILLS SECTION-->
<section id="skills" class="py-5 bg-white">
<div class="container">
<!--Title-->
<div class="row">
<div class="col text-center">
<h1 class="display-4 text-uppercase text-dark mb-0">
<strong>skills</strong>
</h1>
<div class="title-underline bg-danger"></div>
<p class="mt-2 text-capitalize text-muted">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<!--End of Title-->
<div class="row">
<!--single column-->
<div class="col-md-6 col-lg-3 text-center my-4">
<i class="fab fa-node-js fa-5x text-danger"></i>
<h3 class="text-uppercase my-3">node.js</h3>
<p class="text-muted">Lorem ipsum dolor sit amet consectetur adipisicing elit. Atque, fuga voluptatem? Vitae,
sequi. Earum, ad.</p>
<a href="#" class="btn btn-outline-danger btn-block text-uppercase">press here</a>
</div>
<!--End of single column-->
<!--single column-->
<div class="col-md-6 col-lg-3 text-center my-4">
<i class="fab fa-html5 fa-5x text-danger"></i>
<h3 class="text-uppercase my-3">html5</h3>
<p class="text-muted">Lorem ipsum dolor sit amet consectetur adipisicing elit. Atque, fuga voluptatem? Vitae,
sequi. Earum, ad.</p>
<a href="#" class="btn btn-outline-danger w-75 text-uppercase">press here</a>
</div>
<!--End of single column-->
<!--single column-->
<div class="col-md-6 col-lg-3 text-center my-4">
<i class="fab fa-css3 fa-5x text-danger"></i>
<h3 class="text-uppercase my-3">css3</h3>
<p class="text-muted">Lorem ipsum dolor sit amet consectetur adipisicing elit. Atque, fuga voluptatem? Vitae,
sequi. Earum, ad.</p>
<a href="#" class="btn btn-outline-danger w-50 text-uppercase">press here</a>
</div>
<!--End of single column-->
<!--single column-->
<div class="col-md-6 col-lg-3 text-center my-4">
<i class="fab fa-js fa-5x text-danger"></i>
<h3 class="text-uppercase my-3">js</h3>
<p class="text-muted">Lorem ipsum dolor sit amet consectetur adipisicing elit. Atque, fuga voluptatem? Vitae,
sequi. Earum, ad.</p>
<a href="#" class="btn btn-outline-danger w-70 text-uppercase">press here</a>
</div>
<!--End of single column-->
</div>
</div>
</section>
<!--END OF THE SKILLS SECTION-->
<!--About Section-->
<section id="about" class="bg-info">
<div class="container-fluid">
<div class="row">
<!--About image col-->
<div class="col-md-6 about-picture height-80">
</div>
<!--About text col-->
<div class="col-md-6 about-text height-80 px-5 d-flex align-items-center justify-content-center ">
<!--This is for centering-->
<div class="about-text-center">
<!--Title-->
<div class="row">
<div class="col text-center">
<h1 class="display-4 text-uppercase text-dark mb-0">
<strong>about</strong>
</h1>
<div class="title-underline bg-warning"></div>
<p class="mt-2 text-capitalize text-muted">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<!--End of Title-->
<!--Single Item-->
<div class="checkbox-item d-flex">
<i class="fas fa-check fa-3x p-2 bg-warning mr-3 align-self-center"></i>
<p class="text-light lead">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas, ipsum?</p>
</div>
<!--End of Single Item-->
<!--Single Item-->
<div class="checkbox-item d-flex">
<i class="fas fa-check fa-3x p-2 bg-warning mr-3 align-self-center"></i>
<p class="text-light lead">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas, ipsum?</p>
</div>
<!--End of Single Item-->
<!--Single Item-->
<div class="checkbox-item d-flex">
<i class="fas fa-check fa-3x p-2 bg-warning mr-3 align-self-center"></i>
<p class="text-light lead">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas, ipsum?</p>
</div>
<!--End of Single Item-->
</div>
</div>
</div>
</div>
</section>
<!--END OF About Section-->
<!--Projects-->
<section id="projects" class="py-5 bg-secondary">
<div class="container">
<!--Title-->
<div class="row">
<div class="col text-center">
<h1 class="display-4 text-uppercase text-dark mb-0">
<strong>projects</strong>
</h1>
<div class="title-underline bg-danger"></div>
</div>
</div>
<!--End of Title-->
<div class="row py-3">
<!--Single Project-->
<div class="col-sm-6 col-md-4 my-3">
<img src="img/projects-1.jpeg" class="img-fluid rounded" alt="projects">
</div>
<!--End of sinle Project-->
<!--Single Project-->
<div class="col-sm-6 col-md-4 my-3">
<img src="img/projects-2.jpeg" class="img-fluid img-thumbnail bg-danger border border-danger" alt="projects">
</div>
<!--End of sinle Project-->
<!--Single Project-->
<div class="col-sm-6 col-md-4 my-3 mx-auto">
<img src="img/projects-3.jpeg" class="img-fluid rounded-circle" alt="projects">
</div>
<!--End of sinle Project-->
</div>
<div class="row py-3 no-gutters">
<!--Single Project-->
<div class="col-sm-6 col-md-4 my-3">
<img src="img/projects-4.jpeg" class="img-fluid" alt="project">
</div>
<!--End of sinle Project-->
<!--Single Project-->
<div class="col-sm-6 col-md-4 my-3">
<img src="img/projects-5.jpeg" class="img-fluid" alt="project">
</div>
<!--End of sinle Project-->
<!--Single Project-->
<div class="col-sm-6 col-md-4 my-3 mx-auto">
<img src="img/projects-6.jpeg" class="img-fluid" alt="project">
</div>
<!--End of sinle Project-->
</div>
</section>
<!--End of Projects-->
<!--Team Section Building cards-->
<section id="team" class="py-5 bg-light">
<div class="container">
<!--Title-->
<div class="row">
<div class="col text-center">
<h1 class="display-4 text-uppercase text-dark mb-0">
<strong>team</strong>
</h1>
<div class="title-underline bg-warning"></div>
<p class="mt-2 text-capitalize text-muted">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<!--End of Title-->
<div class="row">
<!--Team Member Section-->
<div class="col-md-6 col-lg-4 my-3">
<div class="card">
<img src="img/team-1.jpg" alt="member" class="card-img-top">
<div class="card-body">
<h5 class="card-title text-capitalize">team member</h5>
<p class="card-text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta, incidunt!</p>
<a href="#" class="btn btn-outline-warning text-uppercase">press here</a>
</div>
<div class="card-footer bg-secondary d-flex justify-content-around">
<a href="#">
<i class="fab fa-facebook fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-twitter fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-youtube fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-google fa-2x text-dark"></i>
</a>
</div>
</div>
</div>
<!--End of Team Member-->
<!--Team Member Section-->
<div class="col-md-6 col-lg-4 my-3">
<div class="card">
<img src="img/team-2.jpg" alt="member" class="card-img-top">
<div class="card-body">
<h5 class="card-title text-capitalize">team member</h5>
<p class="card-text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta, incidunt!</p>
<a href="#" class="btn btn-outline-warning text-uppercase">press here</a>
</div>
<div class="card-footer bg-secondary d-flex justify-content-between">
<a href="#">
<i class="fab fa-facebook fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-twitter fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-youtube fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-google fa-2x text-dark"></i>
</a>
</div>
</div>
</div>
<!--End of Team Member-->
<!--Team Member Section-->
<div class="col-md-6 col-lg-4 my-3">
<div class="card">
<img src="img/team-3.jpg" alt="member" class="card-img-top">
<div class="card-body">
<h5 class="card-title text-capitalize">team member</h5>
<p class="card-text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta, incidunt!</p>
<a href="#" class="btn btn-outline-warning text-uppercase">press here</a>
</div>
<div class="card-footer bg-secondary d-flex justify-content-center">
<a href="#">
<i class="fab fa-facebook fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-twitter fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-youtube fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-google fa-2x text-dark"></i>
</a>
</div>
</div>
</div>
<!--End of Team Member-->
<!--Team Member Section-->
<div class="col-md-6 col-lg-4 my-3">
<div class="card">
<img src="img/team-4.jpg" alt="member" class="card-img-top">
<div class="card-body">
<h5 class="card-title text-capitalize">team member</h5>
<p class="card-text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta, incidunt!</p>
<a href="#" class="btn btn-outline-warning text-uppercase">press here</a>
</div>
<div class="card-footer bg-secondary d-flex justify-content-end">
<a href="#">
<i class="fab fa-facebook fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-twitter fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-youtube fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-google fa-2x text-dark"></i>
</a>
</div>
</div>
</div>
<!--End of Team Member-->
<!--Team Member Section-->
<div class="col-md-6 col-lg-4 my-3">
<div class="card">
<img src="img/team-5.jpg" alt="member" class="card-img-top">
<div class="card-body">
<h5 class="card-title text-capitalize">team member</h5>
<p class="card-text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta, incidunt!</p>
<a href="#" class="btn btn-outline-warning text-uppercase">press here</a>
</div>
<div class="card-footer bg-secondary d-flex justify-content-start">
<a href="#">
<i class="fab fa-facebook fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-twitter fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-youtube fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-google fa-2x text-dark"></i>
</a>
</div>
</div>
</div>
<!--End of Team Member-->
<!--Team Member Section-->
<div class="col-md-6 col-lg-4 my-3">
<div class="card">
<img src="img/team-6.jpg" alt="member" class="card-img-top">
<div class="card-body">
<h5 class="card-title text-capitalize">team member</h5>
<p class="card-text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta, incidunt!</p>
<a href="#" class="btn btn-outline-warning text-uppercase">press here</a>
</div>
<div class="card-footer bg-secondary d-flex justify-content-around">
<a href="#">
<i class="fab fa-facebook fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-twitter fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-youtube fa-2x text-dark"></i>
</a>
<a href="#">
<i class="fab fa-google fa-2x text-dark"></i>
</a>
</div>
</div>
</div>
<!--End of Team Member-->
</div>
</section>
<!--End of Team Section-->
<!--CAROUSEL SECTION-->
<section id="carousel" class="py-5 bg-primary">
<div class="container">
<!--Section Title-->
<div class="row">
<div class="col text-center">
<h1 class="display-4 text-uppercase text-dark mb-0">
<strong>first carousel</strong>
</h1>
<div class="title-underline bg-warning"></div>
<p class="mt-2 text-capitalize text-muted">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<!--End of Section Title-->
<div class="row">
<div class="col-md-8 mx-auto text-center">
<div id="example" class="carousel slide" data-ride='carousel'>
<!--Indicators-->
<ul class="carousel-indicators">
<li data-target="#example" data-slide-to='0' class="active"></li>
<li data-target="#example" data-slide-to='1'></li>
<li data-target="#example" data-slide-to='2'></li>
<li data-target="#example" data-slide-to='3'></li>
</ul>
<!--Images-->
<div class="carousel-inner">
<div class="carousel-item active"><img src="img/projects-1.jpeg" alt="project" class="d-block w-100">
</div>
<div class="carousel-item"><img src="img/projects-2.jpeg" alt="project" class="d-block w-100">
</div>
<div class="carousel-item"><img src="img/projects-3.jpeg" alt="project" class="d-block w-100">
</div>
<div class="carousel-item"><img src="img/projects-4.jpeg" alt="project" class="d-block w-100">
</div>
</div>
<!--End of Images-->
<!-- Controller -->
<a href="#example" class="carousel-control-prev" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a href="#example" class="carousel-control-next" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
</div>
</div>
</section>
<!--END OF CAROUSEL SECTION-->
<!--FILLER SECTION-->
<section id="filler" class="p-5">
<div class="container">
<div class="row">
<div class="col-md-6 mx-auto text-center">
<h1 class="text-danger">the web developers agency</h1>
<p class="lead text-white">Lorem ipsum dolor sit amet consectetur adipisicing elit. Temporibus, dolorum
impedit dolore architecto nemo alias beatae velit? Minus, accusamus animi?</p>
<a href="#" class="btn btn-lg btn-primary m-2">press here</a>
</div>
</div>
</div>
</section>
<!--END OF FILLER SECTION -->
<!--Blog Section-->
<section id="blog" class="p-5 bg-success">
<div class="container">
<!--Section Title-->
<div class="row">
<div class="col text-center">
<h1 class="display-4 text-uppercase text-dark mb-0">
<strong>blog</strong>
</h1>
<div class="title-underline bg-warning"></div>
<p class="mt-2 text-capitalize text-muted">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<!--End of Section Title-->
<div class="row">
<div class="col-md-4">
<img src="img/projects-1.jpeg" class="img-fluid img-thumbnail" alt="">
<h2 class="my-3 text-warning">project 1</h2>
<p class="text-muted">Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatum, sapiente?</p>
</div>
<div class="col-md-4 mt-3">
<img src="img/projects-17.jpg" class="img-fluid img-thumbnail" alt="">
<h2 class="my-3 text-warning">project 2</h2>
<p class="text-muted">Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatum, sapiente?</p>
</div>
<div class="col-md-4 mt-5">
<img src="img/projects-2.jpeg" class="img-fluid img-thumbnail" alt="">
<h2 class="my-3 text-warning">project 3</h2>
<p class="text-muted">Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatum, sapiente?</p>
</div>
</div>
</div>
</section>
<!--End of Blog Section-->
<!--Contact Section-->
<section id="contact" class="py-5 bg-warning">
<div class="container">
<!--Title-->
<div class="row">
<div class="col text-center">
<h1 class="display-4 text-uppercase text-dark mb-0">
<strong>contact</strong>
</h1>
<div class="title-underline bg-primary"></div>
<p class="mt-2 text-capitalize text-muted">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<!--End of Title-->
<div class="row">
<div class="col-md-6 my-3">
<div class="card card-body bg-secondary">
<!--Title-->
<div class="card-title text-center text-white">
<h2 class="text-capitalize">new to bootsrap?</h2>
<p>new user please sign in</p>
</div>
<!--End of Title-->
<form>
<!--simple form-->
<div class="form-group mt-3">
<input type="text" class="form-control form-control-lg" name="" id="name">
</div>
<!--email-->
<div class="form-group mt-3">
<input type="email" class="form-control" name="" id="email" placeholder="email">
</div>
<!--phone-->
<div class="form-group mt-3">
<input type="tel" class="form-control" name="" id="phone" placeholder="phone">
</div>
<!--Input group-->
<div class="input-group my-3">
<div class="input-group-prepend">
<span class="input-group-text">username</span>
</div>
<input type="text" name="" class="form-control" id="group-username">
</div>
<!--Font Awesome Input Group -->
<div class="input-group my-3">
<!--prepend-->
<div class="input-group-prepend">
<span class="input-group-text"><i class="fas fa-user"></i></span>
</div>
<!--end of prepend-->
<input type="text" name="" class="form-control" id="group-username-1" placeholder="username">
<!--append-->
<div class="input-group-append">
<button type="button" class="btn btn-primary">submit</button>
</div>
</div>
<button type="submit" class="btn btn-outline-dark btn-block text-uppercase">sign up here</button>
</form>
</div>
</div>
<!--Google Maps-->
<div class="col-md-6 my-3">
<div class="embed-responsive embed-responsive-4by3">
<iframe class="embed-responsive-item "
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d152260.66966619046!2d-1.639536285095886!3d53.39563468138367!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x48790aa9fae8be15%3A0x3e2827f5af06b078!2sSheffield!5e0!3m2!1sen!2suk!4v1560553340214!5m2!1sen!2suk"
width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div>
</div>
</section>
<!--END of Contact Section-->
<!--Review Section-->
<section id="review" class="py-5 bg-danger">
<div class="container">
<!--Section Title-->
<div class="row">
<div class="col text-center">
<h1 class="display-4 text-uppercase text-dark mb-0">
<strong>review</strong>
</h1>
<div class="title-underline bg-secondary"></div>
<p class="mt-2 text-capitalize text-muted">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<!--End of Section Title-->
<div class="row">
<div class="col-md-6 my-4">
<!-- display only at certain sizes -->
<img src="img/team-1.jpg" class="img-fluid rounded-circle d-none d-md-block" alt="">
</div>
<div class="col-md-6 my-4">
<blockquote class="blockquote text-right">
<p><i class="fas fa-quote-left mr-3 fa-2x"></i>Lorem ipsum dolor sit amet consectetur, adipisicing elit.
Enim,
unde! Voluptate eos veritatis dolorem ut?</p>
<footer class="blockquote-footer text-left">master coder</footer>
</blockquote>
</div>
</div>
</div>
</section>
<!--End of Review Section-->
<!-- Progress Section-->
<section id="progress" class="p-5">
<div class="container">
<!--Section Title-->
<div class="row">
<div class="col text-center">
<h1 class="display-4 text-uppercase text-dark mb-0">
<strong>progress</strong>
</h1>
<div class="title-underline bg-primary"></div>
<p class="mt-2 text-capitalize text-muted">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<!--End of Section Title-->
<div class="row">
<div class="col-md-8 mx-auto">
<!--Single Progress bar-->
<h1 class="text-white">html</h1>
<div class="progress bg-secondary">
<div class="progress-bar bg-success" style="width: 20%"></div>
</div>
<!--Single Progress bar-->
<h1 class="text-white">css</h1>
<div class="progress bg-secondary">
<div class="progress-bar bg-danger" style="width: 40%"></div>
</div>
<!--Single Progress bar-->
<h1 class="text-white">js</h1>
<div class="progress bg-secondary">
<div class="progress-bar bg-warning" style="width: 60%"></div>
</div>
<!--Single Progress bar-->
<div class="prog my-3 text-white d-flex justify-content-between">
<h3>bootstrap</h3>
<h3>80%</h3>
</div>
<div class="progress bg-secondary">
<div class="progress-bar" style="width: 80%"></div>
</div>
</div>
</div>
</div>
</section>
<!--End of Progress Section-->
<!--Pricing Section-->
<section id="pricing" class="py-5 bg-secondary">
<div class="container-fluid">
<!--Section Title-->
<div class="row">
<div class="col text-center">
<h1 class="display-4 text-uppercase text-dark mb-0">
<strong>pricing</strong>
</h1>
<div class="title-underline bg-primary"></div>
<p class="mt-2 text-capitalize text-white">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<!--End of Section Title-->
<div class="row">
<!--card-->
<div class="col-md-4 my-4">
<div class="card">
<!--card header-->
<div class="card-header bg-primary text-white text-uppercase text-center py-4">
<h3>standard</h3>
</div>
<!--card title-->
<div class="card-title text-center my-3">
<h4>
<sup>£</sup>5<sub>/month</sub>
</h4>
</div>
<!--list-->
<ul class="list-group list-group-flush text-center">
<li class="list-group-item">Lorem, ipsum dolor.</li>
<li class="list-group-item">Lorem, ipsum dolor.</li>
<li class="list-group-item">Lorem, ipsum dolor.</li>
</ul>
<!--card footer-->
<div class="card-footer">
<a href="" class="btn btn-outline-dark btn-block text-capitalize">sign up</a>
</div>
</div>
</div>
<!--end of card-->
<!--card-->
<div class="col-md-4 my-4">
<div class="card">
<!--card header-->
<div class="card-header bg-primary text-white text-uppercase text-center py-4">
<h3>basic</h3>
</div>
<!--card title-->
<div class="card-title text-center my-3">
<h4>
<sup>£</sup>10<sub>/month</sub>
</h4>
</div>
<!--list-->
<div class="card-body">
<ul class="list-group text-center">
<li class="list-group-item">Lorem, ipsum dolor.</li>
<li class="list-group-item">Lorem, ipsum dolor.</li>
<li class="list-group-item">Lorem, ipsum dolor.</li>
</ul>
</div>
<!--card footer-->
<div class="card-footer">
<a href="" class="btn btn-outline-dark btn-block text-capitalize">sign up</a>
</div>
</div>
</div>
<!--end of card-->
<!--card-->
<div class="col-md-4 my-4">
<div class="card">
<!--card header-->
<div class="card-header bg-primary text-white text-uppercase text-center py-4">
<h3>pro</h3>
</div>
<!--card title-->
<div class="card-title text-center my-3">
<h4>
<sup>£</sup>15<sub>/month</sub>
</h4>
</div>
<!--list-->
<ul class="list-group list-group-flush text-center">
<li class="list-group-item">Lorem, ipsum dolor.</li>
<li class="list-group-item">Lorem, ipsum dolor.</li>
<li class="list-group-item">Lorem, ipsum dolor.</li>
</ul>
<!--card footer-->
<div class="card-footer">
<a href="" class="btn btn-outline-dark btn-block text-capitalize">sign up</a>
</div>
</div>
</div>
<!--end of card-->
</div>
</div>
</section>
<!--End of Pricing Section-->
<!--FOOTER SECTION-->
<footer id="footer" class="bg-dark py-5">
<div class="container">
<!--Section Title-->
<div class="row">
<div class="col text-center">
<h1 class="display-4 text-uppercase text-white mb-0">
<strong>footer</strong>
</h1>
<div class="title-underline bg-primary"></div>
<p class="mt-2 text-capitalize text-white">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<!--End of Section Title-->
<div class="row">
<div class="col text-center">
<a href="#" class="btn">
<i class="fab fa-3x fa-facebook text-primary m-2"></i>
</a>
<a href="#" class="btn">
<i class="fab fa-3x fa-twitter text-primary m-2"></i>
</a>
<a href="#" class="btn">
<i class="fab fa-3x fa-instagram text-primary m-2"></i>
</a>
<a href="#" class="btn">
<i class="fab fa-3x fa-google-plus text-primary m-2"></i>
</a>
<button type="button" class="btn btn-danger d-block mx-auto my-3" data-toggle="modal" data-target="#modal">log
out</button>
</div>
</div>
</div>
</footer>
<!--Modal for logout-->
<div class="modal fade" id="modal">
<div class="modal-dialog">
<div class="modal-content">
<!--modal header-->
<div class="modal-header">
<h3 class="modal-title">sorry to see you leave</h3>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!--modal body-->
<div class="modal-body">
<p>this is some random text in the modal body</p>
</div>
<!--model footer-->
<div class="modal-footer">
<button class="btn btn-danger text-capitalize" type="button" data-dismiss="modal">close</button>
</div>
</div>
</div>
</div>
<!--END OF FOOTER SECTION-->
<!--Bootstrap JS and JQUERY-->
<script src=" ./js/jquery-3.4.1.min.js"> </script>
<script src="./js/bootstrap.bundle.min.js">
</script>
</body>
</html>