-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
694 lines (626 loc) · 23.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- SITE TITTLE -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Forest Coffee</title>
<!-- PLUGINS CSS STYLE -->
<!-- Bootstrap -->
<link href="plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Themefisher Font -->
<link href="plugins/themefisher-font/style.css" rel="stylesheet">
<!-- Slick Carousel -->
<link href="plugins/slick/slick.css" rel="stylesheet">
<!-- Slick Carousel Theme -->
<link href="plugins/slick/slick-theme.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<!-- CUSTOM CSS -->
<link href="css/style.css" rel="stylesheet">
<link href="styling.css" rel="stylesheet">
<!-- FAVICON -->
<link href="images/logo.png" rel="shortcut icon">
</head>
<body class="body-wrapper">
<nav class="navbar main-nav fixed-top navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="homepage.html"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="tf-ion-android-menu"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link scrollTo" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link scrollTo" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link scrollTo" href="#feature">What we do</a>
</li>
<li class="nav-item">
<a class="nav-link scrollTo" href="#pricing">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link scrollTo" href="#team">Team</a>
</li>
<li class="nav-item">
<a class="nav-link scrollTo" href="feedback_form.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!--=====================================
= Homepage Banner =
======================================-->
<div class="container-fluid" id="home">
<section class="hero-area hero-post-slides owl-carousel">
<!-- Single Hero Slide -->
<div class="single-hero-slide bg-img bg-overlay d-flex align-items-center justify-content-center" style="background-image: url(images/slider0.jpeg);">
<!-- Post Content -->
<div class="container">
<div class="row">
<div class="col-12">
<div class="hero-slides-content">
<div style="width:20%; height: 20%;float:right; margin-right: -5%" ><img src="images/logo.png" ></div>
<h3 data-animation="fadeInUp" data-delay="100ms" style="color:white;">YOU ARE WELCOME TO</h3>
<h2 data-animation="fadeInUp" data-delay="200ms" style="color:white;">Forest Coffee Farmers Ltd.</h2>
<h5 data-animation="fadeInUp" data-delay="300ms" style="color:white;">We grow coffee, nurture it, add value to it and then innovate it.</h5>
<a href="#about" class="btn crose-btn" data-animation="fadeInUp" data-delay="500ms">About Us</a>
</div>
</div>
</div>
</div>
</div>
<div class="single-hero-slide bg-img bg-overlay d-flex align-items-center justify-content-center" style="background-image: url(images/slider6.jpeg);">
<!-- Post Content -->
<div class="container">
<div class="row">
<div class="col-12">
<div class="hero-slides-content"><div style="width:20%; height: 20%;float:right" ><img src="images/logo.png" ></div>
<h2 data-animation="fadeInUp" data-delay="100ms">Our Main Objective</h2>
<p data-animation="fadeInUp" data-delay="130ms"><h3 style = "color:white">“To accelerate agricultural value chain growth and development among smallholder farmers in Uganda”</h3></p>
<a href="#feature" class="btn crose-btn" data-animation="fadeInUp" data-delay="500ms">find out More</a>
</div>
</div>
</div>
</div>
</div>
<div class="single-hero-slide bg-img bg-overlay d-flex align-items-center justify-content-center" style="background-image: url(images/slider7.jpeg);">
<!-- Post Content -->
<div class="container">
<div class="row">
<div class="col-12">
<div class="hero-slides-content">
<div style="width:20%; height: 20%;float:right" ><img src="images/logo.png" ></div>
<h2 data-animation="fadeInUp" data-delay="100ms">Our Vision And Mission</h2>
<p data-animation="fadeInUp" data-delay="110ms">To strive to stimulate and support long term economic growth and increased cash flows in an environmentally friendly way as well as best value addition services and products which provide value to customers, farmers and Forest Coffee Farmers Limited”</p>
<a href="#pricing" class="btn crose-btn" data-animation="fadeInUp" data-delay="500ms">find out More</a>
</div>
</div>
</div>
</div>
</div>
<!-- Single Hero Slide -->
<div class="single-hero-slide bg-img bg-overlay d-flex align-items-center justify-content-center" style="background-image: url(images/slider5.jpeg);">
<!-- Post Content -->
<div class="container">
<div class="row">
<div class="col-12">
<div style="width:20%; height: 20%;float:right" ><img src="images/logo.jpeg" ></div>
<div class="hero-slides-content">
<h2 data-animation="fadeInUp" data-delay="100ms">Reach Us Now</h2>
<p data-animation="fadeInUp" data-delay="120ms">With pleasure, we would like to hear from you
.</p>
<a href="feedback_form.html" class="btn crose-btn" data-animation="fadeInUp" data-delay="500ms">find out More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="row">
<div class="col-12">
<div class="section-title">
<h1>Welcome To
Forest Coffee Farmers Ltd</h1>
</div>
<hr style=" margin-top: 1rem;margin-bottom: 1rem;border: 0; border-top: 1px solid rgba(0, 0, 0, 0.1);"/>
</div>
</div>
<section class="about section bg-2" id="about" style="background-image: url(homepage.png);">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="section-title">
<h2>About Forest Coffee Farmers Ltd</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-9 mr-auto active">
<div class="about-block">
<!-- About 01 -->
<div class="about-item align-self-center">
<div class="icon">
<i class="tf-ion-ios-paper-outline"></i>
</div>
<div class="content jumbotron" style="font-family:Verdana; font-size: 200px; font:black">
<h5>About Us</h5>
<p>Forest Coffee farmer’s Limited is a social enterprise, non-governmental organization whose aim is to accelerate agribusinesses,<br> produce organization and farming community development and growth by commercialization of enterprises so smallholder farmers become more efficient, <br>more productive and more competitive in agribusiness operations to enable sustainable incomes, wealth creation and improved livelihoods in environmental friendly way with more emphasis in coffee agribusinesses in Uganda. </p>
<h5>Vision</h5>
<p>To strive to stimulate and support long term economic growth and increased cash flows in an environmentally friendly way</p>
</div>
</div>
<!-- About 03 -->
<div class="about-item">
<div class="icon">
<i class="tf-circle-compass"></i>
</div>
<div class="col-lg-6 content">
<h5>Mission</h5>
<p>To provide best value addition services and products which provide value to customers, farmers and Forest Coffee Farmers Limited.<br> We combine development of the farmers, development of the area and more focus on environment and sustainability with higher income”</p>
</div>
<div class="content">
<h5> Values</h5>
<p>
1.Passion</br>
2.Empowerment</br>
3.Community participation</br>
4.Innovation</br>
5.Collaboration</br>
6.Professionalism</br>
7.Sustainability</br>
8.Climate smart farming</br>
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-3">
<img src="images/aside.jpeg" width="88%" height="auto">
<p>We educate farmers </p>
<img src="images/aside2.jpeg" width="88%" height="auto">
<p>Creating Awareness </p>
<img src="images/innovate.jpeg" width="88%" height="auto">
<p>We are Innovative </p>
<img src="images/garden.jpeg" width="88%" height="auto">
<p>We are always on ground </p>
</div>
</div>
</div>
</section>
<section class="section feature" id="feature" style="background-image: url(featuresPng.png);">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="section-title">
<h2>What We do</h2>
<p>We offer wide range of services in line with coffee processing</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<h5>1. Training the youth.</h5>
<img src="images/slider3.jpeg">
<p>This is aimed at enabling youth acquire necessary competence needed to engage in productive coffee activities or seek employment in order to reduce rampant unemployment amongst youth today.</p>
</div>
<div class="col-lg-6">
<h5>2. Engaging Women in Coffee Production.</h5>
<img src="images/women.jpeg">
<p>We support them through helping youth and women led coffee small scale enterprises access capital, skills and knowledge required for such enterprises to flourish.</p>
</div>
<div class="col-lg-6">
<h5>3. Women and girls rights through Coffee</h5>
<img src="images/girls.jpeg">
<p>We secure their rights for sustainable development, We advocate for the rights of women by ensuring their full participation in coffee policy formulation and secure economic rights for women and girls in farming.</p>
</div>
<!-- Feature Item -->
<div class="col-lg-6">
<!-- Content -->
<h5>4. Ensuring Proper Land Preparations</h5>
<img src="images/prep.jpeg">
<p>We help farmers in preparing their coffee plantational gardens in order to avoid calamities that might affect coffee germination.</p>
</div>
</div>
</div>
</section>
<!--==== End of Features ====-->
<section class="pricing section bg-shape" id="pricing" style="background-image: url(ContactPng.png);">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="section-title">
<h2>Projects that we working on</h2>
<p>It is always our pleasure and committment to serve our communitty with all deligence through many projects which include the following.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<!-- Pricing Table -->
<div class="pricing-table">
<style type="text/css">
#more {display: none;}
</style>
<div class="title">
<h5>1. Youth Unemployment Eradication.</h5>
</div>
<p style="margin-left: 9px">
<img src="images/youth.jpeg" width="100%" >
</span>
</p>
<button class="btn btn-main-rounded" onclick="myFunction()" id="myBtn">Read more</button>
</div>
</div>
<div class="col-lg-6 ">
<!-- Pricing Table -->
<div class="pricing-table featured">
<!-- Title -->
<div class="title">
<h5>2. Proper Coffee Processing.</h5>
</div>
<p style="margin-left: 9px">
<img src="images/processing.jpeg" width="100%">
</p>
</div>
</div>
<div class="col-lg-12">
<!-- Pricing Table -->
<div class="pricing-table">
<!-- Title -->
<div class="title">
<h5>3. Community led actions for Development</h5>
</div>
<p style="margin-left: 9px">
<img src="images/community.jpeg" width="100%">
</p>
</div>
</div>
</div>
</div>
</section>
<!--==== End of Pricing Table ====-->
<div class="container" id="support" style="background-image: url(homepage.png);">
<div class="row" >
<div class="col-12">
<div class="section-title">
<h2>Support our Work</h2>
<p>We believe through our projects, we have been able to transform the lives of many people, your support towards our work is really paramount.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<!-- Pricing Table -->
<div class="pricing-table text-left">
<!-- Title -->
<div class="title">
<h5 style="margin-left: 12px">- Volunteer</h5>
</div>
<p style="margin-left: 12px">
You can share skills by working directly with our staff or support our project by working with beneficiary projects.<br> For available volunteer positions please contact us here for details
</p><br><br><br><br>
<div class="action-button" style="margin: auto;width: 50%;padding: 10px;">
<a href="" class="btn btn-main-rounded ">Volunteer</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<!-- Pricing Table -->
<div class="pricing-table featured text-left">
<!-- Title -->
<div class="title">
<h5 style="margin-left: 12px">- Partnerships</h5>
</div>
<p style="margin-left: 12px">
We welcome strategic partnerships to bridge funding and skills gaps within our project to achieve sustainable development for our communities. <br>We welcome organizations and individuals to create partnerships with our projects and work towards common goals.
</p>
<div class="action-button" style="margin: auto;width: 80%;padding: 10px;">
<a href="" class="btn btn-main-rounded">Join Partnership</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 m-md-auto">
<!-- Pricing Table -->
<div class="pricing-table text-left">
<!-- Title -->
<div class="title">
<h5 style="margin-left: 12px">- Donate</h5>
</div>
<p style="margin-left: 12px">
You can donate your time and resources to our charitable activities in the following ways;-<br>
1. Arrange small fundraising events and raise resources for our projects.<br>
2.Provide a scholarship for children Donate directly to bank account to support our community activities.<br>
</p>
<div class="action-button" style="margin: auto;width: 50%;padding: 10px;">
<a href="" class="btn btn-main-rounded">Donate to Us</a>
</div>
</div>
</div>
</div>
</div>
<!--==========================
= Team =
===========================-->
<section class="section team bg-shape-two" id="team" style="background-image: url(ContactPng.png);">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h2>Our Creative Team</h2>
<p>Our Team is composed of trained and professional self driven as well as ambitious ladies and gentlemen that are dedicated to executing their work deligently</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6"><!-- Team Member -->
<div class="team-member text-center">
<div class="image">
<img class="img-fluid"src="images/1.jpeg">
</div>
<div class="name">
<h5>Mr. Kabimba Adams Alex </h5>
</div>
<div class="position">
<p>Coffee Consultant</p>
</div>
<ul class="social-icons list-inline">
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-facebook"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-twitter"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-linkedin"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-instagram-outline"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<!-- Team Member -->
<div class="team-member text-center">
<div class="image">
<img class="img-fluid" src="images/2.jpeg" alt="team-member">
</div>
<div class="name">
<h5>Mr. Misango Rasto Kabali</h5>
</div>
<div class="position">
<p>Production and Marketing Manager</p>
</div>
<ul class="social-icons list-inline">
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-facebook"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-twitter"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-linkedin"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-instagram-outline"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<!-- Team Member -->
<div class="team-member text-center">
<div class="image">
<img class="img-fluid" src="images/3.jpeg">
</div>
<div class="name">
<h5>Mr. Kizza Isaaya </h5>
</div>
<div class="position">
<p>Director</p>
</div>
<ul class="social-icons list-inline">
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-facebook"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-twitter"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-linkedin"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-instagram-outline"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<!-- Team Member -->
<div class="team-member text-center">
<div class="image">
<img class="img-fluid" src="images/4.jpeg">
</div>
<div class="name">
<h5>Mr. Kyewalabye Male</h5>
</div>
<div class="position">
<p>Finance Manager</p>
</div>
<ul class="social-icons list-inline">
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-facebook"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-twitter"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-linkedin"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-instagram-outline"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--==== End of Team ====-->
<!--=================================
= Testimonial =
==================================-->
<section class="section testimonial bg-primary-shape" id="testimonial">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h2 class="text-white">Our Happy Customers</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 m-auto">
<!-- Testimonial Carosel -->
<div class="testimonial-slider">
<!-- testimonial item -->
<div class="testimonial-item">
<div class="content">
<div class="name">
<h5>Skilling the Youth</h5>
</div>
<div class="pos-in-com">
<p>Team Leader <span>Jinja</span></p>
</div>
<div class="speech">
<p>Our dedicated Team is always in the field skilling the youth to be productive and development through mutual trainings. </p>
</div>
<ul class="rating list-inline">
<li class="list-inline-item">
<i class="tf-ion-android-star"></i>
<i class="tf-ion-android-star"></i>
<i class="tf-ion-android-star"></i>
<i class="tf-ion-android-star"></i>
<i class="tf-ion-android-star"></i>
</li>
</ul> </div>
<div class="image">
<img class="img-fluid" src="https://1.bp.blogspot.com/-X1Zg7vte9MQ/XSulP7muFOI/AAAAAAAAJQw/HqEU87YBtZY-EALJreCs8jbayHvqCAsEgCLcBGAs/s320/SkillingYouth.JPG" alt="testimonial-person">
</div>
</div>
<!-- testimonial item -->
<div class="testimonial-item">
<div class="content">
<div class="name">
<h5>Skilled Workers</h5>
</div>
<div class="pos-in-com">
<p>Secretary <span>Jinja</span></p>
</div>
<div class="speech">
<p>Our dedicated Team is composed of skillful and dedicated young and innovative ladies and gentlemen who are ready to skill and add value to Youth </p>
</div>
<ul class="rating list-inline">
<li class="list-inline-item">
<i class="tf-ion-android-star"></i>
<i class="tf-ion-android-star"></i>
<i class="tf-ion-android-star"></i>
<i class="tf-ion-android-star"></i>
<i class="tf-ion-android-star"></i>
</li>
</ul> </div>
<div class="image">
<img class="img-fluid" src="https://1.bp.blogspot.com/-O-TCajZ1QPY/XSulPq7wrCI/AAAAAAAAJQo/bvVG2j1vZl0ofF7A4ybKiF-4XbKbH9HSACLcBGAs/s320/SecretaryNadungaJoan.JPG" alt="testimonial-person">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==== End of Testimonial ====-->
<section class="section cta-subscribe" id="contact">
<div class="container-fluid">
<div class="row">
</div>
</div>
</section>
<!--============================
= Footer =
=============================-->
<footer class="footer-main" style="background-color: black">
<div class="col-lg-6 text-lg-right" style="float:right">
<h1 style="color:white">Connect with Via</h1>
<ul class="social-icons list-inline">
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-facebook"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-twitter"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-linkedin"></i></a>
</li>
<li class="list-inline-item">
<a href=""><i class="tf-ion-social-instagram-outline"></i></a>
</li>
</ul>
<!-- Footer Links -->
</div>
<div class="col-lg-6 mr-auto">
<ul class="footer-links list-inline">
<li class="list-inline-item">
<a href="#about">ABOUT</a>
</li>
<li class="list-inline-item">
<a href="#team">TEAM</a>
</li>
<li class="list-inline-item">
<a href="contact.html">CONTACT US</a>
</li>
</ul>
<div class="copyright">
<p>@2019 All Rights Reserved FOREST COFFEE FARMERS LTD | Designed By : <a href="https://dihfahsih.blogspot.com/p/about.html" target="_blank">MUGOYA DIHFAHSIH</a>
</p>
</div>
</div>
</footer>
<!-- JAVASCRIPTS -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBI14J_PNWVd-m0gnUBkjmhoQyNyd7nllA" async defer></script>
<script src="plugins/jquery/jquery.js"></script>
<script src="plugins/popper/popper.min.js"></script>
<script src="plugins/bootstrap/js/bootstrap.min.js"></script>
<script src="plugins/waypoints/jquery.waypoints.min.js"></script>
<script src="plugins/slick/slick.min.js"></script>
<script src="plugins/smoothscroll/SmoothScroll.min.js"></script>
<script src="js/custom.js"></script>
<!-- Bootstrap js -->
<script src="js/bootstrap/bootstrap.min.js"></script>
<!-- All Plugins js -->
<script src="js/plugins/plugins.js"></script>
<!-- Active js -->
<script src="js/active.js"></script>
<script type="text/javascript">
function myFunction() {
var dots = document.getElementById("dots");
var moreText = document.getElementById("more");
var btnText = document.getElementById("myBtn");
if (dots.style.display === "none") {
dots.style.display = "inline";
btnText.innerHTML = "Read more";
moreText.style.display = "none";
} else {
dots.style.display = "none";
btnText.innerHTML = "Read less";
moreText.style.display = "inline";
}
}
</script>
</body>
</html>