-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofessional.html
884 lines (834 loc) · 34.7 KB
/
professional.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat&family=Playfair+Display:wght@500&family=Roboto+Slab:wght@400;600&family=Tangerine:wght@700&display=swap"
rel="stylesheet"
/>
<!-- icons -->
<link rel="stylesheet" href="fonts/icomoon/style.css" />
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.0/css/line.css"
/>
<!-- FAV ICONS -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon_io/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon_io/favicon-16x16.png"
/>
<link rel="manifest" href="favicon_io/site.webmanifest" />
<!-- ANIMATION CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<!-- SWIPER CSS -->
<link
rel="stylesheet"
href="https://unpkg.com/swiper/swiper-bundle.min.css"
/>
<!-- Style -->
<link rel="stylesheet" href="css/style.css" />
<script src="https://unpkg.com/scrollreveal"></script>
<title>Vsonet Education</title>
</head>
<body>
<div class="site-mobile-menu site-navbar-target">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
<!-- .site-mobile-menu -->
<div class="site-navbar-wrap">
<div class="site-navbar-top">
<div class="container py-3">
<div class="row align-items-center">
<div class="col-6">
<div class="d-flex mr-auto nav__contact">
<a
href="mailto:[email protected]"
class="d-flex align-items-center mr-4"
>
<span class="icon-envelope mr-2"></span>
<span class="d-none d-md-inline-block"
>[email protected]</span
>
</a>
<a
href="tel:+234 818 000 9100"
class="d-flex align-items-center mr-auto"
>
<span class="icon-phone mr-2"></span>
<span class="d-none d-md-inline-block"
>+234 818 000 9100</span
>
</a>
</div>
</div>
<div class="col-6 text-right">
<div class="mr-auto">
<a
href="https://twitter.com/vsonetedu"
target="_blank"
class="p-2 pl-0"
><span class="icon-twitter"></span
></a>
<a
href="https://web.facebook.com/vsonetedu/"
target="_blank"
class="p-2 pl-0"
><span class="icon-facebook"></span
></a>
<a
href="https://www.linkedin.com/company/vsonetedu/"
target="_blank"
class="p-2 pl-0"
><span class="icon-linkedin"></span
></a>
<a
href="https://www.instagram.com/vsonetedu/"
target="_blank"
class="p-2 pl-0"
>
<span class="icon-instagram"></span
></a>
</div>
</div>
</div>
</div>
</div>
<div class="site-navbar site-navbar-target js-sticky-header">
<div class="container">
<div class="row align-items-center">
<div class="col-2">
<h1 class="my-0 site-logo">
<a href="#"
><img
src="images/logo.png"
alt="Vsonet Education"
class="hero__img"
/></a>
</h1>
</div>
<div class="col-10">
<nav class="site-navigation text-right" role="navigation">
<div class="container">
<div class="d-inline-block d-lg-none ml-md-0 mr-auto py-3">
<a
href="#"
class="site-menu-toggle js-menu-toggle text-white"
><span class="icon-menu h3"></span
></a>
</div>
<ul
class="site-menu main-menu js-clone-nav d-none d-lg-block list__box"
>
<li class="active">
<a href="index.html" class="nav-link">Home</a>
</li>
<li>
<a href="about-us.html" class="nav-link">About Us</a>
</li>
<li class="has-children">
<a href="#" class="nav-link">Courses</a>
<ul class="dropdown arrow-top">
<li>
<a href="diploma.html" class="nav-link"
>Diploma /Degree Programs</a
>
</li>
<li>
<a href="professional.html" class="nav-link">Professional Training</a>
</li>
<li>
<a href="courses-for-children.html" class="nav-link"
>Tech Courses for Children</a
>
</li>
<!-- <!-- <!-- <li class="has-children">
<a href="#">More Links</a>
<ul class="dropdown">
<li><a href="#">Menu One</a></li>
<li><a href="#">Menu Two</a></li>
<li><a href="#">Menu Three</a></li>
</ul>
</li>
<li class="has-children">
<a href="#">More Links</a>
<ul class="dropdown">
<li><a href="#">Menu One</a></li>
<li><a href="#">Menu Two</a></li>
<li><a href="#">Menu Three</a></li>
</ul>
</li>
<li class="has-children">
<a href="#">More Links</a>
<ul class="dropdown">
<li><a href="#">Menu One</a></li>
<li><a href="#">Menu Two</a></li>
<li><a href="#">Menu Three</a></li>
</ul>
</li> -->
</ul>
</li>
<li>
<a href="#about-section" class="nav-link">Training</a>
</li>
<li>
<a href="contact-us.html" class="nav-link">Contact Us</a>
</li>
<li class="mobile__search">
<!-- for mobile devices
<form action="" class="d-flex">
<input
type="search"
class="form-control me-2 search__width"
placeholder="Search..."
aria-label="Search"
/>
<button class="btn about__us-btn" type="submit">Search</button>
</form> -->
</li>
<li class="desktop__search">
<button id="open-modal" class="btn search__nav-btn">
<i class="uil uil-search"></i> Search
</button>
<div id="myModal" class="modal">
<!-- Modal content -->
<div
id="modal-content"
class="modal-content animation-1"
>
<!-- Modal header -->
<div class="modal-header">
<h5 class="modal-header-title">
So what you looking for?
<i class="uil uil-smile-wink-alt"></i>
</h5>
<button id="close" class="modal-header-icon">
<span class="icon">
<i class="uil uil-times"></i>
</span>
</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<form action="" class="d-flex">
<input
type="search"
class="form-control me-2 search__width"
placeholder="Search..."
aria-label="Search"
/>
<button
class="btn btn-outline-success"
type="submit"
>
<i class="uil uil-search"></i>
</button>
</form>
</div>
<!-- Modal footer -->
<div class="modal-footer"></div>
</div>
</div>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</div>
<!-- ================= HEADER ========================-->
<div class="svg-container">
<svg viewbox="0 0 800 400" class="svg">
<path
id="curve"
fill="#375E97"
bac
d="M 800 300 Q 400 350 0 300 L 0 0 L 800 0 L 800 300 Z"
></path>
</svg>
</div>
<header class="header">
<h1 class="header__text">LET'S HELP ON YOUR LEARNING JOURNEY</h1>
<h3 class="header__paragraph">
From single courses to large enterprise solutions, overcome skills gaps,
and accomplish individual and organization objectives.
</h3>
<a href="#courses" class="header__btn btn">ENROLL NOW</a>
</header>
<!-- ================= OUR SERVICES =================== -->
<main>
<h2 class="m-5 text-center" id="courses">
Professional Training
</h2>
<div class="container services__container">
<div class="main-box">
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/artificial-intelligence-machine-learning-business-internet-technology-concept-119357816.jpg"
class="card-img-top"
alt="Machine Learning"
/>
</div>
<h2>Machine Learning</h2>
<hr class="services__line" />
<p>
The course will also discuss recent applications of machine learning, such as to robotic control, data mining, and more. </p>
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i>
</a>
</div>
<div class="box box-red services__box-professional">
<div class="icon">
<img
src="images/cybersecurity-course.png"
class="card-img-top"
alt="Cyber Security"
/>
</div>
<h2>Cyber Security</h2>
<hr class="services__line" />
<p>
Become a Cyber Security Specialist, Learn How to Stop Hackers, Prevent Hacking, & IT Security . Practical skillset in defeating all online threats .
</p>
<a href="#" class="white-border">
Read More <i class="uil uil-arrow-circle-right"></i
></a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="images/web-development.png"
class="card-img-top"
alt="Web Development"
/>
</div>
<h2>Web Development</h2>
<hr class="services__line" />
<p>
Learn how to design and build your own website as you learn the basics of web development using HTML, CSS, Javascript, & more!
</p>
<a href="#"
>Read More <i class="uil uil-arrow-circle-right"></i
></a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="images/uiUxDesign.png"
class="card-img-top"
alt="UI / UX Design"
/>
</div>
<h2>UI / UX Design</h2>
<hr class="services__line" />
<p>
This course will make you an entry-level data scientist – and data scientists are in strong demand, in tech and other industries.
</p>
<a href="#"
>Read More <i class="uil uil-arrow-circle-right"></i
></a>
</div>
<div class="box box-red services__box-professional">
<div class="icon">
<img
src="images/bsc_computing_top-up.jpg"
class="card-img-top"
alt="Computer Basics (Level 2)"
/>
</div>
<h2>Computer Basics (Level 2)</h2>
<hr class="services__line" />
<p>
Computer Basics Short Course will provide students with an introduction to the key Computer Basics that will be required in their studies.
</p>
<a href="#" class="white-border">
Read More <i class="uil uil-arrow-circle-right"></i
></a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="images/digitalMarketing.png"
class="card-img-top"
alt="Digital Marketing"
/>
</div>
<h2>Digital Marketing</h2>
<hr class="services__line" />
<p>
Learn about different marketing channels and tactics, and understand how to apply these skills and create a digital marketing strategy.
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i
></a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="images/appDevelopment.png"
class="card-img-top"
alt="App Development"
/>
</div>
<h2>App Development</h2>
<hr class="services__line" />
<p>
Build mobile apps with proficiency in all aspects of mobile applications from design to building and publishing apps for iOS and Android . </p>
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i>
</a>
</div>
<div class="box box-red services__box-professional">
<div class="icon">
<img
src="images/cloudComputing.png"
class="card-img-top"
alt="Cloud Computing"
/>
</div>
<h2>Cloud Computing</h2>
<hr class="services__line" />
<p>
The course examines the most important APIs used in the Amazon and Microsoft Cloud, plus machine images and applications.
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i
></a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/big-data-science-analysis-information-technology-concept-server-room-background-163707870.jpg"
class="card-img-top"
alt="Data Science Introduction"
/>
</div>
<h2>Data Science Introduction</h2>
<hr class="services__line" />
<p>
This course will provide learners with an understanding of how to think in a data-analytics way, conduct investigations on business activity. </p>
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i>
</a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="images/dataScience.jpg"
class="card-img-top"
alt="Data Science Intermediate"
/>
</div>
<h2>Data Science Intermediate</h2>
<hr class="services__line" />
<p>
This course focuses on Data Analytics for professionals who have 2 -3 years working experience in other domains such as finance, business planning, marketing or sales.
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i
></a>
</div>
<div class="box box-red services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/data-science-deep-learning-artificial-intelligence-analysis-internet-modern-technology-concept-130068639.jpg"
class="card-img-top"
alt="Data Science Advanced"
/>
</div>
<h2>Data Science Advanced</h2>
<hr class="services__line" />
<p>
This course will enable learners to understand the basic properties of matrices and vectors, multiplication, linear transpose, conjugate, determinant. </p>
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i>
</a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/conceptual-hand-writing-showing-data-science-business-photo-text-multidisciplinary-field-uses-scientific-methods-concept-160269633.jpg"
class="card-img-top"
alt="Data Science Expert"
/>
</div>
<h2>Data Science Expert</h2>
<hr class="services__line" />
<p>
This course will make you an entry-level data scientist – and data scientists are in strong demand, in tech and other industries.
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i
></a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/python-inscription-against-laptop-code-background-learn-python-programming-language-computer-courses-training-python-201194142.jpg"
class="card-img-top"
alt="Python"
/>
</div>
<h2>Python</h2>
<hr class="services__line" />
<p>
This course will make you an entry-level data scientist – and data scientists are in strong demand, in tech and other industries. </p>
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i>
</a>
</div>
<div class="box box-red services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/design-thinking-concept-software-development-design-thinking-concept-software-development-169220515.jpg"
class="card-img-top"
alt="BSc (Hons)Design Thinking"
/>
</div>
<h2>BSc (Hons)Design Thinking</h2>
<hr class="services__line" />
<p>
Today innovation is everyone’s business. Design thinking provides the tools you need to uncover creative opportunities that are there.
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i
></a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/dhaka-bangladesh-laptop-computer-displaying-text-basics-laptop-screen-dhaka-bangladesh-laptop-computer-displaying-221596743.jpg"
class="card-img-top"
alt="Computer Basics Short Course"
/>
</div>
<h2>Computer Basics Short Course</h2>
<hr class="services__line" />
<p>
Computer Basics Short Course will provide students with an
introduction to the key Computer Basics that will be required in
their studies. </p>
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i>
</a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/hands-presenting-our-services-to-you-cube-letters-two-palms-services-our-hands-102690459.jpg"
class="card-img-top"
alt="ITIL® 4 Foundation"
/>
</div>
<h2>ITIL® 4 Foundation</h2>
<hr class="services__line" />
<p>
ITIL helps all organizations, regardless of their industry or
business sector, provide their IT services using the most
efficient and economical methods.
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i
></a>
</div>
<div class="box box-red services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/cmyk-ink-design-graphics-creativity-concept-76605528.jpg"
class="card-img-top"
alt="Graphics Design"
/>
</div>
<h2>Graphics Design</h2>
<hr class="services__line" />
<p>
Our online graphic design classes let you expand your skills on
image editing and 3-D rendering. Gain a global certification in
graphic design. </p>
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i>
</a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/search-engine-marketing-37971008.jpg"
class="card-img-top"
alt="Search Engine Marketing"
/>
</div>
<h2>Search Engine Marketing</h2>
<hr class="services__line" />
<p>
Become an SEO Expert. Master search engine optimization tools
and strategies.
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i
></a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/social-media-marketing-online-business-concept-58365062.jpg"
class="card-img-top"
alt="Social Media Marketing"
/>
</div>
<h2>Social Media Marketing</h2>
<hr class="services__line" />
<p>
Manage Your Social Strategies. Expand your online audience and
establish your social brand. </p>
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i>
</a>
</div>
<div class="box box-red services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/white-robot-using-digital-artificial-intelligence-head-interface-d-rendering-blurred-background-165105338.jpg"
class="card-img-top"
alt="Artificial Intelligence"
/>
</div>
<h2>Artificial Intelligence</h2>
<hr class="services__line" />
<p>
Identify the skills you will need to work with AI in the future
. AI is used in many businesses to improve the way employees
work. </p>
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i>
</a>
</div>
<div class="box box-grey services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/modern-computer-programming-code-screen-showing-random-scripts-113805394.jpg"
class="card-img-top"
alt="Computer Programming"
/>
</div>
<h2>Computer Programming</h2>
<hr class="services__line" />
<p>
Explore what code can do · How programming works in real life ·
Writing basic code · Solving a more complex problem with code. </p>
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i>
</a>
</div>
<div class="box box-red services__box-professional">
<div class="icon">
<img
src="https://thumbs.dreamstime.com/b/network-connections-297779.jpg"
class="card-img-top"
alt="Cisco Networking"
/>
</div>
<h2>Cisco Networking</h2>
<hr class="services__line" />
<p>
The CCNA certification validates your skills and knowledge in
network fundamentals, network access, IP connectivity, IP
services, security and fundamentals </p>
</p>
<a href="#">
Read More <i class="uil uil-arrow-circle-right"></i>
</a>
</div>
</div>
</div>
</main>
<!--====================== FOOTER ============================= -->
<footer class="bg-white">
<div class="container py-5">
<div class="row py-4">
<div class="col-lg-4 col-md-6 mb-4 mb-lg-0">
<img src="images/logo.png" alt="" width="180" class="mb-3" />
<p class="font-italic text-muted">
We are a unique institute in the world of Tech Education. Our
intense and personified approach to teaching, training and
coaching our students sets us apart. We record success when our
students succeed from the beginning, the conclusion and after the
training.
</p>
<div class="wrapper">
<div class="icon facebook">
<div class="tooltip">Facebook</div>
<a
href="https://www.facebook.com/vsonetedu/?_rdc=1&_rdr"
target="_blank"
class="footer__anchor"
><i class="uil uil-facebook-f"></i
></a>
</div>
<div class="icon twitter">
<div class="tooltip">Twitter</div>
<a href=""><i class="uil uil-twitter"></i></a>
</div>
<div class="icon instagram">
<div class="tooltip">Instagram</div>
<span><i class="uil uil-instagram-alt"></i></span>
</div>
<div class="icon github">
<div class="tooltip">Linkedin</div>
<span><i class="uil uil-linkedin"></i></span>
</div>
<div class="icon youtube">
<div class="tooltip">Youtube</div>
<span><i class="uil uil-youtube"></i></span>
</div>
</div>
</div>
<div class="col-lg-2 col-md-6 mb-4 mb-lg-0">
<h6 class="text-uppercase font-weight-bold mb-4">Useful Links</h6>
<ul class="list-unstyled mb-0">
<li class="mb-2">
<a href="#" class="text-muted footer__link">Affiliate Area</a>
</li>
<li class="mb-2">
<a href="#" class="text-muted footer__link">Careers</a>
</li>
<li class="mb-2">
<a href="#" class="text-muted footer__link">Enrol Now</a>
</li>
<li class="mb-2">
<a href="#" class="text-muted footer__link">Events</a>
</li>
<li class="mb-2">
<a href="#" class="text-muted footer__link">Refer and Earn</a>
</li>
</ul>
</div>
<div class="col-lg-2 col-md-6 mb-4 mb-lg-0">
<h6 class="text-uppercase font-weight-bold mb-4">
Terms & Conditions
</h6>
<ul class="list-unstyled mb-0">
<li class="mb-2">
<a href="#" class="text-muted footer__link"
>Terms & Conditions</a
>
</li>
<li class="mb-2">
<a href="#" class="text-muted footer__link">Privacy Policy</a>
</li>
<li class="mb-2">
<a href="#" class="text-muted footer__link">Refund Policy</a>
</li>
<li class="mb-2">
<a href="#" class="text-muted footer__link"
>Reschedule Policy</a
>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 mb-lg-0">
<h6 class="text-uppercase font-weight-bold mb-4">Newsletter</h6>
<p class="text-muted mb-4">
Subscribe to keep up with fresh news and exciting updates.
</p>
<div class="p-1 rounded border">
<div class="input-group">
<input
type="email"
placeholder="Enter your email address"
aria-describedby="button-addon1"
class="form-control border-0 shadow-0"
/>
<div class="input-group-append">
<button id="button-addon1" type="submit" class="btn btn-link">
<i class="uil uil-message footer__message"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Copyrights -->
<div class="bg-light py-4">
<div class="container text-center">
<p class="text-muted mb-0 py-2">
©
<script>
document.write(new Date().getFullYear());
</script>
Vsonet Education All rights reserved. |Designed by WillzFrank|
</p>
</div>
</div>
</footer>
<script>
ScrollReveal({
reset: true,
distance: "60px",
duration: 2500,
delay: 300,
});
ScrollReveal().reveal(".header", { delay: 300, origin: "top" });
ScrollReveal().reveal(".services__box-professional, .about__us__box, .wrapper", {
delay: 200,
origin: "bottom",
interval: 200,
});
</script>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
</body>
</html>