-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
936 lines (902 loc) · 30.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Primary Meta Tags -->
<title>We Are Plymouths - Community</title>
<meta name="title" content="We Are Plymouths - Community" />
<meta
name="description"
content="We Are Plymouth’s is an education hub where each individual is a Plymouth & we only focus to deliver quality education."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://weareplymouths.com/" />
<meta property="og:title" content="We Are Plymouths - Community" />
<meta
property="og:description"
content="We Are Plymouth’s is an education hub where each individual is a Plymouth & we only focus to deliver quality education."
/>
<meta property="og:image" content="assets/img/wap-og-image.jpg" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://weareplymouths.com/" />
<meta property="twitter:title" content="We Are Plymouths - Community" />
<meta
property="twitter:description"
content="We Are Plymouth’s is an education hub where each individual is a Plymouth & we only focus to deliver quality education."
/>
<meta property="twitter:image" content="assets/img/wap-og-image.jpg" />
<!-- Preloader -->
<style>
@keyframes hidePreloader {
0% {
width: 100%;
height: 100%;
}
100% {
width: 0;
height: 0;
}
}
body > div.preloader {
position: fixed;
background: white;
width: 100%;
height: 100%;
z-index: 1071;
opacity: 0;
transition: opacity 0.5s ease;
overflow: hidden;
pointer-events: none;
display: flex;
align-items: center;
justify-content: center;
}
body:not(.loaded) > div.preloader {
opacity: 1;
}
body:not(.loaded) {
overflow: hidden;
}
body.loaded > div.preloader {
animation: hidePreloader 0.5s linear 0.5s forwards;
}
</style>
<script>
window.addEventListener("load", function () {
setTimeout(function () {
document.querySelector("body").classList.add("loaded");
}, 300);
});
</script>
<!-- Favicon -->
<link rel="icon" href="assets/img/favicon.png" type="image/png" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="assets/libs/@fortawesome/fontawesome-free/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- Quick CSS -->
<link
rel="stylesheet"
href="assets/css/quick-website.css"
id="stylesheet"
/>
<style>
.fa {
padding: 20px;
font-size: 30px;
width: 100px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
}
.fab {
padding: 20px;
font-size: 30px;
width: 100px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
}
.fa:hover {
opacity: 1;
background: #ffffff;
}
.fab:hover {
opacity: 0.9;
background: #ffffff;
}
.fa-facebook {
background: #3b5998;
color: white;
}
.fa-twitter {
background: #55acee;
color: white;
}
.fa-linkedin {
background: #007bb5;
color: white;
}
.fa-youtube {
background: #bb0000;
color: white;
}
.fa-instagram {
background: #125688;
color: white;
}
.fa-tumblr {
background: #2c4762;
color: white;
}
.fa-discord {
background: #00b489;
color: white;
}
.fa-medium {
background: #ff5700;
color: white;
}
.fa-github {
background: #ff6600;
color: white;
}
</style>
</head>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="spinner-border text-primary" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div
class="modal fade"
tabindex="-1"
role="dialog"
id="modal-cookies"
data-backdrop="false"
aria-labelledby="modal-cookies"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-aside left-4 right-4 bottom-4">
<div class="modal-content bg-dark-dark">
<div class="modal-body">
<!-- Text -->
<p class="text-sm text-white mb-3">
We use cookies so that our themes work for you. By using our
website, you agree to our use of cookies.
</p>
<!-- Buttons -->
<!-- <a
href="pages/utility/terms.html"
class="btn btn-sm btn-white"
target="_blank"
>Learn more</a
> -->
<button
type="button"
class="btn btn-sm btn-primary mr-2"
data-dismiss="modal"
>
OK
</button>
</div>
</div>
</div>
</div>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<div class="container">
<!-- Brand -->
<a class="" href="index.html">
<img
alt="We are Plymouths Logo"
src="assets/img/wap-logo.webp"
height="60%"
id="navbar-logo"
/>
</a>
<!-- Toggler -->
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarCollapse"
aria-controls="navbarCollapse"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mt-4 mt-lg-0 ml-auto">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="community.html">Community</a>
</li>
<li class="nav-item">
<a class="nav-link" href="join-us.html">Join Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#contact-us">Contact Us</a>
</li>
</ul>
<!-- Button -->
<form class="form-inline my-2 my-lg-0">
<a
class="btn btn-primary"
role="button"
href="https://discord.gg/zPAvFpr"
>
Join Discord
</a>
</form>
<!-- Mobile button -->
<!-- <div class="d-lg-none text-center">
<a
href="https://webpixels.io/themes/quick-website-ui-kit"
class="btn btn-block btn-sm btn-warning"
>See more details</a
>
</div> -->
</div>
</div>
</nav>
<!-- Main content -->
<section class="slice py-2">
<div class="container">
<div class="row row-grid align-items-center">
<div class="col-12 col-md-5 col-lg-6 order-md-2 text-center">
<!-- Image -->
<figure class="w-100">
<img
alt="Image placeholder"
src="assets/img/home_header.png"
class="img-fluid mw-md-120"
/>
</figure>
</div>
<div class="col-12 col-md-7 col-lg-6 order-md-1 pr-md-5">
<!-- Heading -->
<h1 class="display-4 text-center text-md-left mb-3">
Expose Your Dreams & Make Them
<strong class="text-primary">Alive.</strong>
</h1>
<!-- Text -->
<p class="lead text-center text-md-left text-muted">
A place where you are free to gain and share knowledge, ideas, and
opportunities by communicating with the experts belonging to
various different fields. a community for knowledge geeks aka
Plymouth’s connect, jam, share, network.
</p>
<!-- Buttons -->
<div class="text-center text-md-left mt-5">
<a href="join-us.html" class="btn btn-primary btn-icon">
<span class="btn-inner--text">Join us</span>
<span class="btn-inner--icon"
><i data-feather="chevron-right"></i
></span>
</a>
<!-- <a
href="https://webpixels.io/illustrations"
class="btn btn-neutral btn-icon d-none d-lg-inline-block"
target="_blank"
>Learn More</a
> -->
</div>
</div>
</div>
</div>
</section>
<section class="slice slice-lg pt-lg-6 pb-0 pb-lg-6 bg-section-secondary">
<div class="container">
<!-- Title -->
<!-- Section title -->
<div class="row mb-5 justify-content-center text-center">
<div class="col-lg-8">
<span class="badge badge-soft-success badge-pill badge-lg">
About Us
</span>
<h2 class="mt-4">We Deliver Quality Education</h2>
<div class="mt-2">
<p class="lead lh-180">
Welcome to We Are Plymouth’s, a place where you are free to gain
and share knowledge, ideas, and opportunities by communicating
with the experts belonging to various different fields. No
matter where you come from, if you have a thirst for knowledge,
if you aspire to achieve something greater in life, be among
life-changers, and if you call yourself a knowledge geek, you
are welcome because you have arrived at the perfect destination
which belongs to you!
</p>
</div>
</div>
</div>
<div class="row mx-lg-n4">
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div>
<div
class="icon icon-shape rounded-circle bg-success text-white mr-4"
>
<i data-feather="check"></i>
</div>
</div>
</div>
<div>
<span class="h6">Workshops</span>
<p class="text-sm text-muted mb-0">
Webinars and Hands-on Workshops
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div>
<div
class="icon icon-shape rounded-circle bg-success text-white mr-4"
>
<i data-feather="check"></i>
</div>
</div>
</div>
<div>
<span class="h6">Community Driven</span>
<p class="text-sm text-muted mb-0">
We love sharing and learning
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 px-lg-4">
<div class="card shadow-none">
<div class="p-3 d-flex">
<div>
<div>
<div
class="icon icon-shape rounded-circle bg-success text-white mr-4"
>
<i data-feather="check"></i>
</div>
</div>
</div>
<div>
<span class="h6">Find People</span>
<p class="text-sm text-muted mb-0">Join Community</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="slice slice-lg bg-section-dark pt-5 pt-lg-8">
<!-- SVG separator -->
<div
class="shape-container shape-line shape-position-top shape-orientation-inverse"
>
<svg
width="2560px"
height="100px"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
preserveAspectRatio="none"
x="0px"
y="0px"
viewBox="0 0 2560 100"
style="enable-background: new 0 0 2560 100"
xml:space="preserve"
class=""
>
<polygon points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<!-- Container -->
<div class="container position-relative zindex-100">
<div class="col">
<div class="row justify-content-center">
<div class="col-md-10 text-center">
<div class="mt-4 mb-6">
<h2 class="h1 text-white">Our Mission</h2>
<h4 class="text-white mt-3">
We aim to deliver quality packed content of conventional
Topics using non-conventional methods for better
understanding. we are an education hub consisting of coders,
designers, security experts, researchers, developers, and many
more working together.
</h4>
<!-- Play button -->
<!-- <a href="#" class="btn btn-primary btn-icon mt-4">Learn more</a> -->
</div>
</div>
</div>
</div>
</div>
</section>
<section class="slice pt-0">
<div class="container position-relative zindex-100">
<div class="row">
<div class="col-xl-4 col-sm-6 mt-n7">
<div class="card">
<div class="card-body pb-5">
<div class="pt-4 pb-5">
<img
src="assets/img/svg/illustrations/illustration-5.svg"
class="img-fluid img-center"
style="height: 150px"
alt="Illustration"
/>
</div>
<h5 class="h4 lh-130 mb-3">Awareness</h5>
<p class="text-muted mb-0">
Our Main Goal Is To Deliver Quality Education. Using
Non-conventional Methods Teaching On Trending Technologies and
it’s Awareness.
</p>
</div>
</div>
</div>
<div class="col-xl-4 col-sm-6 mt-sm-n7">
<div class="card">
<div class="card-body pb-5">
<div class="pt-4 pb-5">
<img
src="assets/img/svg/illustrations/illustration-6.svg"
class="img-fluid img-center"
style="height: 150px"
alt="Illustration"
/>
</div>
<h5 class="h4 lh-130 mb-3">Helping Hands</h5>
<p class="text-muted mb-0">
We Are Helping less Developed Schools & Colleges In Rural
Areas
</p>
</div>
</div>
</div>
<div class="col-xl-4 col-md-12 col-sm-6 mt-xl-n7">
<div class="card">
<div class="card-body pb-5">
<div class="pt-4 pb-5">
<img
src="assets/img/svg/illustrations/illustration-7.svg"
class="img-fluid img-center"
style="height: 150px"
alt="Illustration"
/>
</div>
<h5 class="h4 lh-130 mb-3">Opportunities</h5>
<p class="text-muted mb-0">
We Provide Career Opportunities, Training, Mentorship, and
Consultation Sessions.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-4 col-sm-6">
<div class="card">
<div class="card-body pb-5">
<div class="pt-4 pb-5">
<img
src="assets/img/svg/illustrations/illustration-10.svg"
class="img-fluid img-center"
style="height: 150px"
alt="Illustration"
/>
</div>
<h5 class="h4 lh-130 mb-3">Methods of Work</h5>
<p class="text-muted mb-0">
Conducting sessions on Women & child safety, Awareness,
Women’s rights.
</p>
</div>
</div>
</div>
<div class="col-xl-4 col-md-12 col-sm-6">
<div class="card">
<div class="card-body pb-5">
<div class="pt-4 pb-5">
<img
src="assets/img/svg/illustrations/illustration-15.svg"
class="img-fluid img-center"
style="height: 150px"
alt="Illustration"
/>
</div>
<h5 class="h4 lh-130 mb-3">Diversity</h5>
<p class="text-muted mb-0">
Introduce Non-conventional Content And Spread awareness that
is helpful for everyone to bring diversity. In eduation no
matter wheather it is tech or nontech.
</p>
</div>
</div>
</div>
<div class="col-xl-4 col-md-12 col-sm-6">
<div class="card">
<div class="card-body pb-5">
<div class="pt-4 pb-5">
<img
src="assets/img/svg/illustrations/illustration-1.svg"
class="img-fluid img-center"
style="height: 150px"
alt="Illustration"
/>
</div>
<h5 class="h4 lh-130 mb-3">Consultancy</h5>
<p class="text-muted mb-0">
Our service consultants help define technology barriers to
improve business tech aspects.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="slice slice-lg">
<div class="container">
<div class="py-2">
<div class="row row-grid justify-content-between align-items-center">
<div class="col-lg-5">
<h5 class="h3">Frequently Asked Questions</h5>
<p class="lead my-4">
Still have questions? Learn more about our services and
experience through the questions of people like you.
</p>
<div id="accordion-1" class="accordion accordion-stacked">
<!-- Accordion card 1 -->
<div class="card">
<div
class="card-header py-4"
id="heading-1-1"
data-toggle="collapse"
role="button"
data-target="#collapse-1-1"
aria-expanded="false"
aria-controls="collapse-1-1"
>
<h6 class="mb-0">
<i data-feather="file" class="mr-3"></i>What does Plymouth
mean?
</h6>
</div>
<div
id="collapse-1-1"
class="collapse"
aria-labelledby="heading-1-1"
data-parent="#accordion-1"
>
<div class="card-body">
<p>
Plymouth means knowledge geeks one who urge to learn.
being Curious to answer that haven’t answered yet we
consider each member as Plymouth .
</p>
</div>
</div>
</div>
<!-- Accordion card 2 -->
<div class="card">
<div
class="card-header py-4"
id="heading-1-2"
data-toggle="collapse"
role="button"
data-target="#collapse-1-2"
aria-expanded="false"
aria-controls="collapse-1-2"
>
<h6 class="mb-0">
<i data-feather="unlock" class="mr-3"></i>What is We are
Plymouths?
</h6>
</div>
<div
id="collapse-1-2"
class="collapse"
aria-labelledby="heading-1-2"
data-parent="#accordion-1"
>
<div class="card-body">
<p>
We’re Plymouths is an education hub and a research &
development venture working along UNDP’s 4th Factor
Delivering Quality Education Using Non-Conventional
Methods Of Studies.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="mb-0 ml-lg-5">
<div class="p-2">
<img
alt="Image placeholder"
src="assets/img/home-faq.png"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row row-grid">
<div class="col-lg-8">
<!-- Badge -->
<span class="badge badge-warning badge-pill">Stats</span>
<!-- Title -->
<h2 class="my-4 text-dark">Our Work</h2>
<!-- Text -->
<p class="lead text-dark lh-190">
We have been able to add tremendous impact to lives of learners
with the workshops and community driven approach.
</p>
</div>
</div>
<!-- Milestones -->
<div class="row mt-6">
<div class="col-lg-12">
<div class="row">
<div class="col-sm-3">
<div class="card shadow-lg rounded-lg border-0 mb-sm-0">
<div class="p-4 text-center text-sm-left">
<h3 class="mb-0">28+</h3>
<p class="text-muted mb-0">Events Completed</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="card shadow-lg rounded-lg border-0 mb-sm-0">
<div class="p-4 text-center text-sm-left">
<h3 class="mb-0">4,000</h3>
<p class="text-success mb-0">Satisfied Audience</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="card shadow-lg rounded-lg border-0 mb-sm-0">
<div class="p-4 text-center text-sm-left">
<h3 class="mb-0">4</h3>
<p class="text-muted mb-0">Chapters</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="card shadow-lg rounded-lg border-0 mb-sm-0">
<div class="p-4 text-center text-sm-left">
<h3 class="mb-0">30+</h3>
<p class="text-muted mb-0">Spent Hours</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="slice slice-lg bg-section-dark pt-5 pt-lg-8"
id="contact-us"
>
<!-- SVG separator -->
<div
class="shape-container shape-line shape-position-top shape-orientation-inverse"
>
<svg
width="2560px"
height="100px"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
preserveAspectRatio="none"
x="0px"
y="0px"
viewBox="0 0 2560 100"
style="enable-background: new 0 0 2560 100"
xml:space="preserve"
class=""
>
<polygon points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<!-- Container -->
<div class="container position-relative zindex-100">
<div class="col">
<div class="row justify-content-center">
<div class="col-md-10 text-center">
<div class="mt-4 mb-6">
<h2 class="h1 text-white">Social Profiles</h2>
<h4 class="text-white mt-3"></h4>
<!-- Play button -->
<a
href="https://www.facebook.com/weareplymouths"
target="_blank"
class="fa fa-facebook"
></a>
<a
href="https://twitter.com/weareplymouths"
target="_blank"
class="fa fa-twitter"
></a>
<a
href="https://www.linkedin.com/company/weareplymouths/"
target="_blank"
class="fa fa-linkedin"
></a>
<a
href="https://www.instagram.com/wap.community/"
target="_blank"
class="fa fa-instagram"
></a>
<a
href="https://www.youtube.com/channel/UC3AeVXfi-5AwYC-jFjF6fvA"
target="_blank"
class="fa fa-youtube"
></a>
<a
href="https://github.com/wap-community"
target="_blank"
class="fa fa-github"
></a>
<a
href="https://medium.com/@wap.plymouths"
target="_blank"
class="fa fa-medium"
></a>
<a
href="https://discord.gg/zPAvFpr"
target="_blank"
class="fab fa-discord"
></a>
</div>
</div>
</div>
</div>
</div>
<div
class="card bg-section-dark align-items-center text-center border-0 rounded-lg"
style="max-width: 100%"
>
<div class="card-body px-5">
<div class="row text-center">
<div class="col-12 text-center">
<div class="mx-auto text-center align-items-center">
<div class="text-center mx-auto">
<span class="h4 text-white text-center mb-0">Contact Us</span>
</div>
</div>
<h3 class="text-white pt-4">
Feel Free to Ping us. We will be glad to connect.
</h3>
<a
href="mailto:[email protected]"
target="_blank"
class="btn btn-primary btn-icon"
>
<span class="btn-inner--text"
>Email: [email protected]
</span>
<span class="btn-inner--icon">
<i data-feather="discord" class="text-warning"></i>
</span>
</a>
</div>
</div>
</div>
</div>
</section>
<footer class="position-relative" id="footer-main">
<div class="footer pt-lg-7 footer-dark bg-dark">
<!-- SVG shape -->
<div
class="shape-container shape-line shape-position-top shape-orientation-inverse"
>
<svg
width="2560px"
height="100px"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
preserveAspectRatio="none"
x="0px"
y="0px"
viewBox="0 0 2560 100"
style="enable-background: new 0 0 2560 100"
xml:space="preserve"
class="fill-section-secondary"
>
<polygon points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<!-- Footer -->
<div class="container pt-4">
<div class="row mx-auto">
<div class="col-lg-6 mb-5 mb-lg-0">
<!-- Theme's logo -->
<a href="index.html">
<img
alt="Image placeholder"
src="assets/img/wap-logo.webp"
id="footer-logo"
/>
</a>
<!-- Webpixels' mission -->
<p class="mt-4 text-sm opacity-8 pr-lg-4">
We Are Plymouth’s is an education hub where each individual is a
Plymouth & we only focus to deliver quality education.
</p>
<!-- Social -->
</div>
</div>
<hr class="divider divider-fade divider-dark my-4" />
<div class="row align-items-center justify-content-md-between pb-4">
<div class="col-md-6">
<div
class="copyright text-sm font-weight-bold text-center text-md-left"
>
Copyright © 2020. All Rights Reserved.
</div>
</div>
<!-- <div class="col-md-6">
<ul
class="nav justify-content-center justify-content-md-end mt-3 mt-md-0"
>
<li class="nav-item">
<a class="nav-link" href="#"> Terms </a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"> Privacy </a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"> Cookies </a>
</li>
</ul>
</div> -->
</div>
</div>
</div>
</footer>
<!-- Core JS -->
<script src="assets/libs/jquery/dist/jquery.min.js"></script>
<script src="assets/libs/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/libs/svg-injector/dist/svg-injector.min.js"></script>
<script src="assets/libs/feather-icons/dist/feather.min.js"></script>
<!-- Quick JS -->
<script src="assets/js/quick-website.js"></script>
<!-- Feather Icons -->
<script>
feather.replace({
width: "1em",
height: "1em",
});
</script>
</body>
</html>