-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
638 lines (604 loc) · 32.5 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
<!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, shrink-to-fit=no">
<meta name="description" content="Teaching Programming for Free">
<meta name="keywords" content="Community, Project Codelaborate, Coding">
<meta name="author" content="The Project Codelaborate Developers">
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Title -->
<title>Project Codelaborate | Home</title>
<!-- favicon -->
<link rel="icon" href="img/core-img/favicon.ico">
<!-- Core Stylesheet -->
<link href="style.css" rel="stylesheet">
<!-- Responsive CSS -->
<link href="css/responsive.css" rel="stylesheet">
<!-- Font Awesome Script-->
<script src="https://kit.fontawesome.com/034893c064.js"></script>
</head>
<body>
<!-- ***** Preloader Start ***** -->
<div id="preloader">
<div class="mosh-preloader"></div>
</div>
<!-- ***** Header Area Start ***** -->
<header class="header_area clearfix">
<div class="container-fluid h-100">
<div class="row h-100">
<!-- Menu Area Start -->
<div class="col-12 h-100">
<div class="menu_area h-100">
<nav class="navbar h-100 navbar-expand-lg align-items-center">
<!-- Logo -->
<a class="navbar-brand" href="index.html"><img src="img/core-img/logo.png" alt="logo"></a>
<!-- Menu Area -->
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#mosh-navbar" aria-controls="mosh-navbar" aria-expanded="false"
aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse justify-content-end" id="mosh-navbar">
<ul class="navbar-nav animated" id="nav">
<li class="nav-item"><a class="nav-link" href="/index.html">Home</a></li>
<!--li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="moshDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Pages</a>
<div class="dropdown-menu" aria-labelledby="moshDropdown">
<a class="dropdown-item" href="index.html">Home</a>
<a class="dropdown-item" href="about.html">About Us</a>
<a class="dropdown-item" href="resources.html">Resources</a>
<a class="dropdown-item" href="affiliates.html">Community Affiliates</a>
<a class="dropdown-item" href="soonBlog.html">Blog</a>
<a class="dropdown-item" href="contact.html">Contact</a>
<!div class="dropdown-divider"></div>
<a class="dropdown-item" href="elements.html">Elements</a>
</div>
</li-->
<li class="nav-item"><a class="nav-link" href="about.html">About Us</a></li>
<li class="nav-item"><a class="nav-link" href="volunteers.html">Volunteers</a></li>
<li class="nav-item dropdown"><a class="nav-link dropdown-toggle" href="#"
id="moshDropdown" role="button" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">Resources</a>
<div class="dropdown-menu" aria-labelledby="moshDropdown">
<a class="dropdown-item" href="resources.html">Resources</a>
<a class="dropdown-item" href="courses/java-course.html">Java Course</a>
<!--a class="dropdown-item" href="extended-courses/java-course.html">Extended Java Course</!--a-->
<a class="dropdown-item" href="https://pcodelab.codescrim.com">Coding
Challenges</a>
<!--a class="dropdown-item" href="python-course.html">Python Course</a>
<a class="dropdown-item" href="extended-python-course.html">Extended Python Course</a>
<a class="dropdown-item" href="online-hackathons.html">Online Hackathons</a>
<a class="dropdown-item" href="community-forums.html">Community Forums</a-->
<a class="dropdown-item" href="https://discord.gg/FDRBbbq">Discord
Server</a>
<a class="dropdown-item" href="coding-sandbox.html">Coding Sandbox</a>
</div>
</li>
<li class="nav-item"><a class="nav-link" href="affiliates.html">Community
Affiliates</a></li>
<li class="nav-item"><a class="nav-link" href="#">
<form id="my_form" action="https://www.paypal.com/cgi-bin/webscr"
method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="AN7P7PZ9TM2BU" />
<a href="javascript:{}"
onclick="document.getElementById('my_form').submit(); return false;"><span
class="nav-link nav-item">Donate</span></a>
</form>
</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</header>
<!-- ***** Header Area End ***** -->
<!-- ***** Welcome Area Start ***** -->
<section class="welcome_area clearfix" id="home" style="background-image: url(img/bg-img/welcome-bg.webp)">
<div class="">
<!-- Single Hero Slides -->
<div class="single-hero-slide d-flex align-items-end justify-content-center">
<div class="hero-slide-content text-center">
<h2>Project Codelaborate</h2>
<h4>Changing the world. Improving the community. One line at a time.</h4>
<img class="slide-img" src="img/bg-img/device.webp" alt="">
</div>
</div>
<!-- Single Hero Slides -->
<!--
<div class="single-hero-slide d-flex align-items-end justify-content-center">
<div class="hero-slide-content text-center">
<h2>A Clean and Modern Template</h2>
<h4>Get your freebie template now!</h4>
<img class="slide-img" src="img/bg-img/device.webp" alt="">
</div>
</div>
-->
</div>
</section>
<!-- ***** Welcome Area End ***** -->
<!-- ***** Service Area Start ***** -->
<section class="mosh-service-area clearfix">
<div class="container">
<div class="row">
<div class="col-12">
<div class="mosh-service-slides owl-carousel">
<!-- Single Service Area -->
<div class="single-service-area text-center">
<h2>01.</h2>
<h4>Introducing the community</h4>
<p>We provide resources to learn programming fundamentals.</p>
</div>
<!-- Single Service Area -->
<div class="single-service-area text-center">
<h2>02.</h2>
<h4>Building a love</h4>
<p>Through in-depth content, we build a love for programming.</p>
</div>
<!-- Single Service Area -->
<div class="single-service-area text-center">
<h2>03.</h2>
<h4>Challenging minds</h4>
<p>We challenge members to find solutions to problems, updated on a weekly basis.</p>
</div>
<!-- Single Service Area -->
<div class="single-service-area text-center">
<h2>04.</h2>
<h4>Scouting the field</h4>
<p>We mentor local elementary and middle schools, teaching programming every week.</p>
</div>
<!-- Single Service Area -->
<div class="single-service-area text-center">
<h2>05.</h2>
<h4>Building a community</h4>
<p>Through these methods, we foster a supportive and collaborative community.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Service Area End ***** -->
<br><br>
<!-- ***** Clients Area Start ***** -->
<!--
<section class="mosh-clients-area section_padding_100 clearfix">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-heading text-center">
<p>impacts</p>
<h2>We've impacted local schools and many students through digital access</h2>
</div>
</div>
<div class="col-12">
<div class="clients-logo-area d-sm-flex align-items-center justify-content-between">
<a href="#"><img src="img/clients-img/1.png" alt=""></a>
<a href="#"><img src="img/clients-img/2.png" alt=""></a>
<a href="#"><img src="img/clients-img/3.png" alt=""></a>
<a href="#"><img src="img/clients-img/4.png" alt=""></a>
<a href="#"><img src="img/clients-img/5.png" alt=""></a>
</div>
</div>
</div>
</div>
</section>
-->
<!-- ***** Clients Area End ***** -->
<!-- ***** Features Area Start ***** -->
<section class="mosh-features-area section_padding_100 clearfix">
<div class="container">
<div class="row justify-content-end">
<div class="col-12 col-md-6">
<div class="section-heading">
<p>about</p>
<h2>Fostering a supportive and collaborative community around programming</h2>
</div>
<div class="features-content">
<p>We help teach, challenge, and mentor students to inspire them to pursue their interests. We
also
want to make sure they have the resources and support they need available from their peers.
We operate in Frisco,
Texas, impacting young minds.</p>
<!--
<div class="features-progress-bar mt-50">
<div class="single_progress_bar mb-15 wow fadeInUp" data-wow-delay="0.2s">
<p>Teaching</p>
<div id="bar1" class="barfiller">
<div class="tipWrap">
<span class="tip"></span>
</div>
<span class="fill" data-percentage="70"></span>
</div>
</div>
<div class="single_progress_bar mb-15 wow fadeInUp" data-wow-delay="0.4s">
<p>Challenging</p>
<div id="bar2" class="barfiller">
<div class="tipWrap">
<span class="tip"></span>
</div>
<span class="fill" data-percentage="90"></span>
</div>
</div>
<div class="single_progress_bar mb-15 wow fadeInUp" data-wow-delay="0.6s">
<p>Mentoring</p>
<div id="bar3" class="barfiller">
<div class="tipWrap">
<span class="tip"></span>
</div>
<span class="fill" data-percentage="55"></span>
</div>
</div>
</div> -->
</div>
<!-- Discover More btn -->
<div class="col-12 text-center mt-100" style="">
<a href="about.html" class="btn mosh-btn">Discover More</a>
</div>
</div>
</div>
</div>
<!-- Feature Thumb -->
<div class="features-img">
<img src="img/bg-img/features-compress.png" alt="">
</div>
</section>
<!-- ***** Feature Area End ***** -->
<!-- ***** Service Area Start ***** -->
<!--
<section class="mosh-more-services-area d-sm-flex clearfix">
<div class="single-more-service-area">
<div class="more-service-content text-center wow fadeInUp" data-wow-delay=".1s">
<img src="img/core-img/trophy.png" alt="">
<h4>No1 in Sales!</h4>
<p>Nec odio vestibulum est mattis effic iturut magna. Pellentesque sit am.</p>
</div>
</div>
<div class="single-more-service-area">
<div class="more-service-content text-center wow fadeInUp" data-wow-delay=".4s">
<img src="img/core-img/edit.png" alt="">
<h4>Documentation inside</h4>
<p>Tiam nec odio vestibulum est mattis effic iturut magna. Pellentesque sit am.</p>
</div>
</div>
<div class="single-more-service-area">
<div class="more-service-content text-center wow fadeInUp" data-wow-delay=".7s">
<img src="img/core-img/video-camera.png" alt="">
<h4>Modern Design</h4>
<p>Etiam nec odio vestibulum est mattis effic iturut magna. Pellentesque sit am.</p>
</div>
</div>
<div class="single-more-service-area">
<div class="more-service-content text-center wow fadeInUp" data-wow-delay="1s">
<img src="img/core-img/presentation.png" alt="">
<h4>Marketing Strategist</h4>
<p>Etiam nec odio vestibulum est mattis effic iturut magna. Pellentesque sit am.</p>
</div>
</div>
</section>
-->
<!-- ***** Service Area End ***** -->
<!-- ***** Portfolio Area Start ***** -->
<!--
<section class="mosh-portfolio-area section_padding_100_0 clearfix">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-heading text-center">
<p>Our Work</p>
<h2>See our Online Portfolio</h2>
</div>
</div>
</div>
</div>
<div class="mosh-projects-menu">
<div class="text-center portfolio-menu">
<p class="active" data-filter="*">All</p>
<p data-filter=".gd">Graphic Design</p>
<p data-filter=".bi">Brand Identity</p>
<p data-filter=".pho">Photography</p>
<p data-filter=".wd">Web Design</p>
<p data-filter=".pc">Printing Colaterall</p>
</div>
</div>
<div class="mosh-portfolio">
<div class="single_gallery_item gd">
<img src="img/portfolio-img/1.jpg" alt="">
<div class="gallery-hover-overlay d-flex align-items-center justify-content-center">
<div class="port-hover-text text-center">
<h4>DFR Corp. Branding</h4>
<a href="#">Brand Identity</a>
</div>
</div>
</div>
<div class="single_gallery_item bi">
<img src="img/portfolio-img/2.jpg" alt="">
<div class="gallery-hover-overlay d-flex align-items-center justify-content-center">
<div class="port-hover-text text-center">
<h4>DFR Corp. Branding</h4>
<a href="#">Brand Identity</a>
</div>
</div>
</div>
<div class="single_gallery_item gd bi">
<img src="img/portfolio-img/3.jpg" alt="">
<div class="gallery-hover-overlay d-flex align-items-center justify-content-center">
<div class="port-hover-text text-center">
<h4>DFR Corp. Branding</h4>
<a href="#">Brand Identity</a>
</div>
</div>
</div>
<div class="single_gallery_item pho">
<img src="img/portfolio-img/4.jpg" alt="">
<div class="gallery-hover-overlay d-flex align-items-center justify-content-center">
<div class="port-hover-text text-center">
<h4>DFR Corp. Branding</h4>
<a href="#">Brand Identity</a>
</div>
</div>
</div>
<div class="single_gallery_item pho">
<img src="img/portfolio-img/5.jpg" alt="">
<div class="gallery-hover-overlay d-flex align-items-center justify-content-center">
<div class="port-hover-text text-center">
<h4>DFR Corp. Branding</h4>
<a href="#">Brand Identity</a>
</div>
</div>
</div>
<div class="single_gallery_item wd pc">
<img src="img/portfolio-img/6.jpg" alt="">
<div class="gallery-hover-overlay d-flex align-items-center justify-content-center">
<div class="port-hover-text text-center">
<h4>DFR Corp. Branding</h4>
<a href="#">Brand Identity</a>
</div>
</div>
</div>
<div class="single_gallery_item wd">
<img src="img/portfolio-img/7.jpg" alt="">
<div class="gallery-hover-overlay d-flex align-items-center justify-content-center">
<div class="port-hover-text text-center">
<h4>DFR Corp. Branding</h4>
<a href="#">Brand Identity</a>
</div>
</div>
</div>
<div class="single_gallery_item pc">
<img src="img/portfolio-img/8.jpg" alt="">
<div class="gallery-hover-overlay d-flex align-items-center justify-content-center">
<div class="port-hover-text text-center">
<h4>DFR Corp. Branding</h4>
<a href="#">Brand Identity</a>
</div>
</div>
</div>
</div>
</section>
-->
<!-- ***** Portfolio Area End ***** -->
<!-- ***** Workflow Area Start ***** -->
<section class="mosh-workflow-area section_padding_100_0 clearfix">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-heading text-center mb-0">
<p>Our Plan</p>
<h2>Project Codelaborate Phases</h2>
</div>
</div>
</div>
</div>
<div class="workflow-img">
<img src="img/core-img/work-progress.png" alt="">
</div>
<div class="workflow-slides-area">
<div class="container">
<div class="row">
<div class="col-12">
<div class="mosh-workflow-slides owl-carousel">
<!-- Single Service Area -->
<div class="single-workflow-area d-flex">
<h2>1.</h2>
<div class="workflow-content ml-15">
<h4>Building Our Foundations</h4>
<p>As a new organization, it is essential for us to establish a strong foundation
for
the overall success of the organization. This includes our website, discord
server,
and much more!</p>
</div>
</div>
<!-- Single Service Area -->
<div class="single-workflow-area d-flex">
<h2>2.</h2>
<div class="workflow-content ml-15">
<h4>Educating the Community</h4>
<p>In order for us to achieve computer science education for all, in phase 2 of this
project, we plan to release tutorial videos to get people started with computer
science.</p>
</div>
</div>
<!-- Single Service Area -->
<div class="single-workflow-area d-flex">
<h2>3.</h2>
<div class="workflow-content ml-15">
<h4>Community Outreach</h4>
<p>In this phase of the project we would like to reach the community through
hackathons,
live tutoring at schools, and internships.</p>
</div>
</div>
<!-- Single Service Area -->
<div class="single-workflow-area d-flex">
<h2>4.</h2>
<div class="workflow-content ml-15">
<h4>Expanding Our Resources</h4>
<p>The final phase of this project aims to expand a bigger user-base through the
introduction of a discord bot, community forums, and more.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Service Area End ***** -->
<!-- ***** CTA Area Start ***** -->
<section class="mosh-call-to-action-area bg-img bg-overlay section_padding_100"
style="background-image: url(img/bg-img/cta.jpg);">
<div class="container">
<div class="row">
<div class="col-12">
<div class="cta-content text-center wow fadeIn" data-wow-delay="0.5s">
<div class="section-heading">
<p>give us a shout</p>
<h2>Want to contact us?</h2>
<a href="contact.html" class="btn mosh-btn">Contact Us</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** CTA Area End ***** -->
<!-- ***** Footer Area Start ***** -->
<footer class="footer-area clearfix">
<!-- Top Fotter Area -->
<div class="top-footer-area section_padding_100_0">
<div class="container">
<div class="row">
<div class="col-12 col-sm-6 col-lg-5">
<div class="single-footer-widget mb-100">
<a href="#" class="mb-30 d-block"><img src="img/core-img/logo.png" alt=""></a>
<p>Fostering a supportive and collaborative community around programming.</p>
<p>Project Codelaborate is a 501(c)(3) non-profit organization based in Frisco, Texas.</p>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-2">
<div class="single-footer-widget mb-100">
<h5>Fast links</h5>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="affiliates.html">Community Affiliates</a></li>
<li><a href="soonBlog.html">Blog</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-2">
<div class="single-footer-widget mb-100">
<h5>Java Course</h5>
<div class="footer-single--blog-post">
<a href="courses/java-course/unit-1.html" class="blog-post-date">
<p>Unit 1</p>
</a>
<a href="#" class="blog-post-title">
<h6>COMING SOON</h6>
</a>
</div>
<div class="footer-single--blog-post">
<a href="courses/java-course/unit-2.html" class="blog-post-date">
<p>Unit 2</p>
</a>
<a href="#" class="blog-post-title">
<h6>COMING SOON</h6>
</a>
</div>
<div class="footer-single--blog-post">
<a href="courses/java-course/unit-3.html" class="blog-post-date">
<p>Unit 3</p>
</a>
<a href="#" class="blog-post-title">
<h6>COMING SOON</h6>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="single-footer-widget mb-100">
<h5>Contact Info</h5>
<div class="footer-single-contact-info d-flex">
<div class="contact-icon">
<img src="img/core-img/link.png" alt="" width="22" height="20">
</div>
<p><a href="https://www.linkedin.com/company/projectcodelaborate"
class="contact-footer"> Project Codelaborate</a></p>
</div>
<div class="footer-single-contact-info d-flex">
<div class="contact-icon">
<img src="img/core-img/insta.png" alt="" width="20" height="18"
style="position:relative; top: 16px;">
</div>
<p><span style="position: relative; top:15px;"><a
href="https://instagram.com/projectcodelaborate?igshid=1k29rqng7134q"
class="contact-footer">@ProjectCodelaborate</a></span></p>
</div>
<div class="footer-single-contact-info d-flex">
<div class="contact-icon">
<img src="img/core-img/message.png" alt="" style="position:relative; top: 35px;">
</div>
<p><span style="position: relative; top:35px;"
class="contact-footer">[email protected]
</span></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Fotter Bottom Area -->
<div class="footer-bottom-area">
<div class="container h-100">
<div class="row h-100">
<div class="col-12 h-100">
<div class="footer-bottom-content h-100 d-md-flex justify-content-between align-items-center">
<div class="copyright-text">
<p>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©
<script>document.write(new Date().getFullYear());</script>
All rights reserved | Supported by <i class="fa fa-heart-o" aria-hidden="true"></i>
by <a href="https://colorlib.com" target="_blank">Colorlib</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
</p>
</div>
<div class="footer-social-info">
<!--a href="#"><i class="fab fa-pinterest" aria-hidden="true"></i></a>
<a href="#"><i class="fab fa-facebook" aria-hidden="true"></i></a>
<a href="#"><i class="fab fa-twitter" aria-hidden="true"></i></a-->
<a href="https://discord.gg/FDRBbbq"><i class="fab fa-discord"
aria-hidden="true"></i></a>
<a href="https://www.instagram.com/ProjectCodelaborate/"><i class="fab fa-instagram"
aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/company/projectcodelaborate"><i
class="fab fa-linkedin" aria-hidden="true"></i></a>
<a href="https://github.com/project-codelaborate"><i class="fab fa-github"
aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- ***** Footer Area End ***** -->
<!-- jQuery-2.2.4 js -->
<script src="js/jquery-2.2.4.min.js"></script>
<!-- Popper js -->
<script src="js/popper.min.js"></script>
<!-- Bootstrap js -->
<script src="js/bootstrap.min.js"></script>
<!-- All Plugins js -->
<script src="js/plugins.js"></script>
<!-- Active js -->
<script src="js/active.js"></script>
</body>
</html>