-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
971 lines (966 loc) · 32.1 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
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
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
<!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" />
<title>Front end Test</title>
<link rel="stylesheet" href="./index.css" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
</head>
<body>
<section>
<nav class="basenav">
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
<div class="logo">
<h1>YOUR LOGO</h1>
</div>
<ul class="nav-links">
<li><a href="#">How It works </a></li>
<li><a href="#">Franchise List</a></li>
<li><a href="#">Franchising guide</a></li>
<li><a href="#" class="btncontact">Contact</a></li>
</ul>
</nav>
<header class="heroheader">
<div class="row herocontainer">
<div class="col-lg-6">
<h1 class="heroText">Lorem ipsum dolor sit amet consectetur</h1>
<button
class="text-light GlB btn btn-lightgrey"
style="font-size: 50px"
>
Lorem ipsum
</button>
<br />
<p class="text-light robotoregular mt-3">
Lorem ipsum dolor sit amet, <br />
consectetur adipiscing elit, sed do eiusmod.
</p>
<button class="btn-green">
See the best franchises
<span
><img
src="./Assets/image/Polygon 6.svg"
alt=""
width="10%"
height="10%"
/>
</span>
</button>
</div>
<div class="col-lg-6">
<div class="heroimgchildimg text-lg-center">
<img
src="./Assets/image/headerimg.png"
alt=""
width="500px"
height="auto"
/>
</div>
<div class="mobileheaderimg">
<img src="./Assets/image/Group 1324.png" alt="abc" />
</div>
</div>
</div>
</header>
<section class="mobilesection">
<div class="text-center pt-5">
<h4 class="GlB" style="color: #08083d">Lorem Ipsum Dolor</h4>
</div>
<div class="row pt-4">
<div class="col text-center mt-2">
<div class="mb-4">
<img
src="./Assets/image/mobilesection1.svg"
alt=""
width="90px"
height="67px"
/>
<p class="robotoregular mt-4">
Why location is only <b>part</b> of the equation
</p>
</div>
<div class="">
<img
src="./Assets/image/smobilesec2.svg"
alt=""
width="55px"
height="83px"
/>
<p class="robotoregular mt-4">
Why business experience is <b>NOT</b> required
</p>
</div>
</div>
<div class="col text-center mt-2">
<div class="mb-5">
<img
src="./Assets/image/w.svg"
alt=""
width="90px"
height="69px"
/>
<p class="robotoregular mt-4">
How you can expand and make a <b>fortune</b>
</p>
</div>
<div class="">
<img
src="./Assets/image/3442 [Converted].svg"
alt=""
width="31px"
height="64px"
/>
<p class="robotoregular mt-4">
Why <b>NOW</b> is the time to take action
</p>
</div>
</div>
</div>
</section>
</section>
<section id="section2 " class="section2">
<div class="row">
<div class="col text-center">
<h1 class="GlB mb-lg-5 sec2heading" style="color: #08083d">
Lorem Ipsum Dolor
</h1>
</div>
</div>
<div class="row">
<div class="col-lg-9 offset-lg-3 col-sm-12">
<ul class="list-unstyled p-sm-4">
<li
class="robotobold sec2li"
style="font-size: 24px; color: #08083d"
>
<span class="mr-3"
><img
src="./Assets/image/check.svg"
alt=""
width="25px"
height="20px"
/></span>
Lorem ipsum dolor sit amet.
</li>
<li
class="robotobold sec2li"
style="font-size: 24px; color: #08083d"
>
<span class="mr-3"
><img
src="./Assets/image/check.svg"
alt=""
width="25px"
height="20px"
/></span>
Lorem ipsum dolor sit amet. Aliquam tincidunt mauris eu risus.
</li>
<li
class="robotobold sec2li"
style="font-size: 24px; color: #08083d"
>
<span class="mr-3"
><img
src="./Assets/image/check.svg"
alt=""
width="25px"
height="20px"
/></span>
Lorem ipsum dolor sit amet. Morbi in sem quis dui placerat ornare,
Pellentesque.
</li>
<li
class="robotobold sec2li"
style="font-size: 24px; color: #08083d"
>
<span class="mr-3"
><img
src="./Assets/image/check.svg"
alt=""
width="25px"
height="20px"
/></span>
Lorem ipsum dolor sit amet. Nunc dignissim risus id metus.
</li>
<li
class="robotobold sec2li"
style="font-size: 24px; color: #08083d"
>
<span class="mr-3"
><img
src="./Assets/image/check.svg"
alt=""
width="25px"
height="20px"
/></span>
Lorem ipsum dolor sit amet. Integer vitae libero ac risus egestas
placerat.
</li>
<li
class="robotobold sec2li"
style="font-size: 24px; color: #08083d"
>
<span class="mr-3"
><img
src="./Assets/image/check.svg"
alt=""
width="25px"
height="20px"
/></span>
Lorem ipsum dolor sit amet. Vivamus vestibulum ntulla nec ante.
</li>
<li
class="robotobold sec2li"
style="font-size: 24px; color: #08083d"
>
<span class="mr-3"
><img
src="./Assets/image/check.svg"
alt=""
width="25px"
height="20px"
/></span>
Lorem ipsum dolor sit amet. Praesent placerat risus quis eros.
</li>
<li
class="robotobold sec2li"
style="font-size: 24px; color: #08083d"
>
<span class="mr-3"
><img
src="./Assets/image/check.svg"
alt=""
width="25px"
height="20px"
/></span>
Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,
consectetuer adipiscing elit.
</li>
</ul>
</div>
</div>
</section>
<section id="section3" class="section3">
<div class="row text-center">
<div class="col-lg-12">
<h1 class="GlB text-light">
Lorem ipsum dolor sit amet adipiscing elit. <br />
Donec odio. Quisque volutpat mattis
</h1>
<br />
<p class="robotoregular text-light">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec
odio. Quisque volutpat mattis eros. Nullam malesuada erat ut. <br />
Suspendisse urna nibh, viverra non, semper suscipit
</p>
<div class="row mt-5">
<div class="col-lg-4 pt-lg-5 col-sm-3">
<div class="amazon">
<img
src="./Assets/image/amazonmall.png"
alt="amazon"
width="308px"
height="308px"
style="border: 2px solid #fff"
/>
<p class="text-light robotoMedium mt-3">Amazon mall</p>
</div>
</div>
<div class="col-lg-4 col-sm-3">
<!-- leftmobilearrow -->
<span class="leftarrowmobile">
<img
src="./Assets/image/leftarrowmob.svg"
alt="lar"
width="30px"
height="30px"
/>
</span>
<div>
<img
src="./Assets/image/gigamall.png"
alt="centarus"
width=" 398px"
height="398px"
style="border: 2px solid #fff"
/>
<h5 class="text-light robotoMedium mt-3">Centaurus Mall</h5>
</div>
<!-- rightmobilearrow -->
<span class="rightarrowmobile">
<img
src="./Assets/image/rightarrowmob.svg"
alt="lar"
width="30px"
height="30px"
/>
</span>
</div>
<div class="col-lg-4 col-sm-3 pt-lg-5">
<div class="giga">
<img
src="./Assets/image/3snip.png"
alt="centarus"
width=" 312px"
height="312px"
style="border: 2px solid #fff"
/>
<p class="text-light robotoMedium mt-3">Giga Mall</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="section4" class="section4">
<div class="row">
<div class="col-lg-5 offset-lg-1 pt-lg-2">
<h1 class="GlB" style="color: #23ce6b">Lorem</h1>
<h1 class="GlB text-light">Ipsum Dolor</h1>
<p class="robotoregular text-light" style="font-size: 21px">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Integer
enim neque volutpat ac tincidunt vitae semper. Ullamcorper eget
nulla facilisi etiam dignissim diam quis enim. Enim eu turpis
egestas pretium aenean pharetra magna ac. Enim nunc faucibus a
pellentesque sit amet porttitor eget dolor. <br /><br />
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Sapien
eget mi proin sed libero enim. Etiam sit amet nisl purus in mollis
nunc sed id. Placerat in egestas erat imperdiet. Etiam tempor orci
eu lobortis elementum nibh tellus molestie nunc. Felis eget velit
aliquet sagittis id consectetur.
</p>
<br />
<a
href="#"
class="text-light"
style="text-decoration: none; cursor: pointer"
>Read more...</a
>
</div>
<div class="col-lg-6 p-5 teamimg">
<img
src="./Assets/image/urn_aaid_sc_US_67d69aae-de6f-4cc7-84f4-b4fd1dd4eb00 (27).png"
alt=""
width="100%"
height="auto"
class="pt-5"
/>
</div>
</div>
</section>
<section id="section5" class="section5">
<div class="row mb-lg-5">
<div class="col-lg-4"></div>
<div class="col-lg-4">
<h1 class="GlB" style="color: #08083d">Lorem ipsum dolor sit amet</h1>
</div>
<div class="col-lg-4"></div>
</div>
<div class="row pl-lg-5" id="styledrow">
<div class="col-lg-3 offset-lg-1 text-center">
<!-- img1 -->
<div>
<img
src="./Assets/image/Group 1306.svg"
alt="group1306"
width="220px"
height="220px"
/>
<br />
<br />
<h5 class="GlB" style="color: #08083d">Lorem Ipsum Dolor</h5>
<p class="robotorregular" style="color: #08083d">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua
</p>
</div>
<br />
<!-- img2 -->
<div class="mt-lg-5">
<img
src="./Assets/image/Group 674.svg"
alt="group1306"
width="220px"
height="201px"
/>
<br />
<br />
<h5 class="GlB" style="color: #08083d">Lorem Ipsum Dolor</h5>
<p class="robotorregular" style="color: #08083d">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua
</p>
</div>
</div>
<!-- 2nd column -->
<div class="col-lg-3 text-center">
<!-- img1-->
<div>
<img
src="./Assets/image/Group 594.svg"
alt="group1306"
width="220px"
height="220px"
/>
<br />
<br />
<h5 class="GlB" style="color: #08083d">Lorem Ipsum Dolor</h5>
<p class="robotorregular" style="color: #08083d">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua
</p>
</div>
<!-- img2-->
<div class="mt-lg-5">
<img
src="./Assets/image/Group 274.svg"
alt="group1306"
width="220px"
height="220px"
/>
<br />
<br />
<h5 class="GlB" style="color: #08083d">Lorem Ipsum Dolor</h5>
<p class="robotorregular" style="color: #08083d">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua
</p>
</div>
</div>
<!-- 3rd column -->
<div class="col-lg-3 text-center">
<!-- img1-->
<div>
<img
src="./Assets/image/Group 1358.svg"
alt="group1306"
width="220px"
height="220px"
/>
<br />
<br />
<h5 class="GlB" style="color: #08083d">Lorem Ipsum Dolor</h5>
<p class="robotorregular" style="color: #08083d">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua
</p>
</div>
<!-- img2-->
<div class="mt-lg-5">
<img
src="./Assets/image/Group 672.svg"
alt="group1306"
width="220px"
height="220px"
/>
<br />
<br />
<h5 class="GlB" style="color: #08083d">Lorem Ipsum Dolor</h5>
<p class="robotorregular" style="color: #08083d">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua
</p>
</div>
</div>
</div>
</section>
<section id="section6" class="section6">
<div class="row mb-lg-5">
<div class="col-lg-4 offset-lg-4 mainsec6heading">
<h1 class="GlB text-light">Lorem Ipsum Dolor Sit</h1>
</div>
<div class="col-lg-4"></div>
</div>
<div class="row">
<div class="col-lg-4 offset-lg-3">
<!-- step 1 -->
<div>
<h5 class="GlB text-uppercase" style="color: #23ce6b">Step 1</h5>
<h2 class="GlB text-light">Lorem Ipsum</h2>
<br />
<p class="text-light robotoMedium">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod.
</p>
<br />
<br />
<div class="nextimg">
<img
src="./Assets/image/next.svg"
alt=""
width="54px"
height="54px"
/>
</div>
</div>
<br />
<br />
<!-- step 2 -->
<div>
<h5 class="GlB text-uppercase" style="color: #23ce6b">Step 2</h5>
<h2 class="GlB text-light">Lorem Ipsum</h2>
<br />
<p class="text-light robotoMedium">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod.
</p>
<br />
<br />
<div class="nextimg">
<img
src="./Assets/image/next.svg"
alt=""
width="54px"
height="54px"
/>
</div>
</div>
<br />
<br />
<!-- step 3 -->
<div>
<h5 class="GlB text-uppercase" style="color: #23ce6b">Step 3</h5>
<h2 class="GlB text-light">Lorem Ipsum</h2>
<br />
<p class="text-light robotoMedium">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod.
</p>
<br />
<br />
<div class="nextimg">
<img
src="./Assets/image/next.svg"
alt=""
width="54px"
height="54px"
/>
</div>
</div>
<br />
<br />
<!-- step 4 -->
<div>
<h5 class="GlB text-uppercase" style="color: #23ce6b">Step 4</h5>
<h2 class="GlB text-light">Lorem Ipsum</h2>
<br />
<p class="text-light robotoMedium">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod.
</p>
<br />
<br />
<div class="nextimg">
<img
src="./Assets/image/next.svg"
alt=""
width="54px"
height="54px"
/>
</div>
</div>
<br />
<br />
<!-- step 5 -->
<div>
<h5 class="GlB text-uppercase" style="color: #23ce6b">Step 5</h5>
<h2 class="GlB text-light">Lorem Ipsum</h2>
<br />
<p class="text-light robotoMedium">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod.
</p>
<br />
<br />
<div class="nextimg">
<img
src="./Assets/image/next.svg"
alt=""
width="54px"
height="54px"
/>
</div>
</div>
<br />
<br />
<!-- step 6 -->
<div>
<h5 class="GlB text-uppercase" style="color: #23ce6b">Step 6</h5>
<h2 class="GlB text-light">Lorem Ipsum</h2>
<br />
<p class="text-light robotoMedium">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod.
</p>
<br />
</div>
</div>
<div class="col-lg-4">
<div class="roundicons">
<img
src="./Assets/image/Group 1373.svg"
alt=""
width="53px"
height="53px"
/>
</div>
<br />
<div class="roundicons mt-5">
<img
src="./Assets/image/question-mark.svg"
alt=""
width="53px"
height="53px"
/>
</div>
<br />
<div class="roundicons mt-5">
<img
src="./Assets/image/chat (2).svg"
alt=""
width="53px"
height="53px"
/>
</div>
<br />
<div class="roundicons mt-5">
<img
src="./Assets/image/share (1).svg"
alt=""
width="53px"
height="53px"
/>
</div>
<br />
<div class="roundicons mt-5">
<img
src="./Assets/image/placeholder.svg"
alt=""
width="53px"
height="53px"
/>
</div>
<br />
<div class="roundicons mt-5">
<img
src="./Assets/image/share.svg"
alt=""
width="53px"
height="53px"
/>
</div>
</div>
</div>
<div class="row mt-lg-5 mb-lg-4">
<div
class="col-lg-4 offset-lg-4 text-center p-3"
style="
box-shadow: 6px 6px 2px #6184d8;
border: 1px solid #ffffff;
border-radius: 20px;
opacity: 1;
"
>
<h1 class="text-light GlB mb-4">Lorem ipsium Dolor Sit...</h1>
<p class="text-light Gll">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed <br />
do eiusmod tempor incididunt ut labore et dolore magna <br />
aliqua
</p>
</div>
</div>
</section>
<section id="section7" class="section7">
<div class="row herocontainer2 pl-lg-5 pl-sm-1">
<div class="col-lg-6">
<h1 class="text-light GlB">Lorem Ipsum Dolor Sit Amet</h1>
<h1 class="GlB mb-lg-4" style="color: #23ce6b">LOREM IPSUM</h1>
<p class="robotoregular text-light text-left mb-lg-4">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec
odio.<br />
Quisque volutpat mattis eros. Nullam malesuada erat ut turpis.
Suspendisse <br />
urna nibh, viverra non, semper suscipit, posuere a, pede.
<br /><br />
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec
odio.<br />
Quisque volutpat mattis eros. Nullam malesuada erat ut turpis.
Suspendisse <br />
urna nibh, viverra.
</p>
<button class="btn-green">Schedule a call today!</button>
</div>
</div>
</section>
<section id="section8" class="section8">
<div class="text-center pt-lg-5">
<h1 class="text-light GlB" style="text-shadow: 0px 1px 0px #000000">
Success Stories
</h1>
<p class="text-light" style="text-shadow: 0px 1px 0px #000000">
Ez-Franchise Client Testimonials
</p>
</div>
</section>
<section id="section9" class="section9">
<div class="row bg-warning">
<!-- col1 -->
<div class="col text-center p-4" style="background-color: #23ce6b">
<img
src="./Assets/image/appostrophie.PNG"
alt="apos"
width="33%"
height="auto"
/>
<p class="text-light robotoMedium mb-4 mt-4">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua Integer
enim.
</p>
<img
src="./Assets/image/Mask Group 21.png"
alt="mask"
width="175px"
height="175px"
/>
<h5 class="GlB text-light mt-4">Lorem Ipsum</h5>
<p class="robotoregular text-light">Lorem ipsum dolor sit</p>
</div>
<!-- col2 -->
<div class="col text-center p-4" style="background-color: #08083d">
<img
src="./Assets/image/appostrophie.PNG"
alt="apos"
width="33%"
height="auto"
/>
<p class="text-light robotoMedium mb-4 mt-4">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua Integer
enim.
</p>
<img
src="./Assets/image/Mask Group [email protected]"
alt="mask"
width="175px"
height="175px"
/>
<h5 class="GlB text-light mt-4">Lorem Ipsum</h5>
<p class="robotoregular text-light">Lorem ipsum dolor sit</p>
</div>
<!-- col3 -->
<div class="col text-center p-4" style="background-color: #6184d8">
<img
src="./Assets/image/appostrophie.PNG"
alt="apos"
width="33%"
height="auto"
/>
<p class="text-light robotoMedium mb-4 mt-4">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua Integer
enim.
</p>
<img
src="./Assets/image/Mask Group 16.png"
alt="mask"
width="175px"
height="175px"
/>
<h5 class="GlB text-light mt-4">Lorem Ipsum</h5>
<p class="robotoregular text-light">Lorem ipsum dolor sit</p>
</div>
<!-- col4 -->
<div class="col text-center p-4" style="background-color: #23ce6b">
<img
src="./Assets/image/appostrophie.PNG"
alt="apos"
width="33%"
height="auto"
/>
<p class="text-light robotoMedium mb-4 mt-4">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua Integer
enim.
</p>
<img
src="./Assets/image/Group 16.png"
alt="mask"
width="175px"
height="175px"
/>
<h5 class="GlB text-light mt-4">Lorem Ipsum</h5>
<p class="robotoregular text-light">Lorem ipsum dolor sit</p>
</div>
<!-- col5-->
<div class="col text-center p-4" style="background-color: #6184d8">
<img
src="./Assets/image/appostrophie.PNG"
alt="apos"
width="33%"
height="auto"
/>
<p class="text-light robotoMedium mb-4 mt-4">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua Integer
enim.
</p>
<img
src="./Assets/image/Mask Group 19.png"
alt="mask"
width="175px"
height="175px"
/>
<h5 class="GlB text-light mt-4">Lorem Ipsum</h5>
<p class="robotoregular text-light">Lorem ipsum dolor sit</p>
</div>
</div>
</section>
<section id="section10" class="section10">
<div class="text-center p-5">
<h1 class="GlB text-light mb-5">Lorem Ipsum Dolor Sit Amet</h1>
<img
src="./Assets/image/OBJECTS.svg"
alt="obj"
width="321px"
height="274px"
/>
<p class="robotoregular text-light mt-5 mb-5">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio.
Quisque volutpat mattis eros. <br />
Nullam malesuada erat ut turpis Suspendisse urna nibh. <br /><br />
Donec nec justo eget felis facilisis fermentum. Aliquam porttitor
mauris sit amet orci. Aenean <br />
dignissim pellentesque felis. <br /><br />
Morbi in sem quis dui placerat ornare pellentesque
</p>
<button class="btn-green">Schedule a call today!</button>
</div>
</section>
<section id="section11" class="section11">
<div class="row p-5">
<div class="col-lg-6 p-5 text-right" id="imgcolmasksection11">
<img
src="./Assets/image/Mask Group 874.png"
alt="mask"
width="572px"
height="394px"
/>
</div>
<div class="col-lg-6 p-5">
<h5 class="robotoMedium mb-4" style="color: #08083d">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
</h5>
<h1 class="GlB mb-5" style="color: #08083d">
Lorem Ipsum <br />
Dolor Sit Amet Consectetuer!
</h1>
<button class="btn-green mt-3">Schedule a call today!</button>
</div>
</div>
</section>
<footer class="footersec">
<div class="row p-5">
<div class="col-lg-4 offset-lg-4 text-right">
<h6 class="GlB text-light mb-3">Get in touch</h6>
<p class="robotoregular text-light">
[email protected]<span class="ml-lg-3"
><img
src="./Assets/image/email.svg"
alt=""
width="19px"
height="10px"
/></span>
</p>
<p class="robotoregular text-light mb-4">
Floor 3, One Expressway, Gulberg Greens, Islamabad<span
class="ml-lg-3"
><img
src="./Assets/image/maps-and-flags.svg"
alt=""
width="11px"
height="16px"
/></span>
</p>
<span>
<a href="#" class="text-light mr-4">Contact</a>
<a href="#" class="text-light mr-4">Disclaimer</a>
<a href="#" class="text-light mr-4">Privacy policy</a>
</span>
</div>
<div class="col-lg-3 text-right">
<h6 class="GlB text-light mb-3">Follow us</h6>
<div class="mb-5">
<span>
<img
src="./Assets/image/facebook.svg"
alt="tw"
width="30px"
height="30px"
class="m-2"
/>
<img
src="./Assets/image/instagram (1).png"
alt="tw"
width="31px"
height="31px"
class="m-2"
/>
<img
src="./Assets/image/twitter (1).svg"
alt="tw"
width="37px"
height="25px"
class="m-2"
/>
<img
src="./Assets/image/youtube.svg"
alt="yt"
width="37px"
height="25px"
class="m-2"
/>
</span>
</div>
<p class="text-light">
@2020 Lorem Ipsum, Pvt. Ltd. All rights reserved
</p>
</div>
</div>
</footer>
<div class="mobilefooter pt-4">
<p class="text-light">Terms and conditions</p>
<p href="#" class="text-light">Privacy policy</p>
<p class="text-light">@2020 Lorem Ipsum, Pvt Ltd</p>
<p class="text-light">All rights reserved</p>
</div>
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
</body>
</html>