-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
807 lines (765 loc) · 46.6 KB
/
Copy pathindex.html
File metadata and controls
807 lines (765 loc) · 46.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>COCO IoT</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Free HTML Templates" name="keywords">
<meta content="Free HTML Templates" name="description">
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:wght@700&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">
<link href="lib/flaticon/font/flaticon.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg bg-white navbar-light shadow-sm py-3 py-lg-0 px-3 px-lg-0">
<a href="index.html" class="navbar-brand ms-lg-5">
<h1 class="m-0 text-uppercase text-dark"><img class="navbar-logo" src="img/logo_image.png" />COCO IoT</h1>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto py-0">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="#about" class="nav-item nav-link">About</a>
<a href="#product" class="nav-item nav-link">Product</a>
<a href="#team" class="nav-item nav-link">The Team</a>
<a href="#contact" class="nav-item nav-link nav-contact bg-primary text-white px-5 ms-lg-5">Contact
<i class="bi bi-arrow-right"></i></a>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Hero Start -->
<div class="container-fluid bg-primary py-5 mb-5 hero-header">
<div class="container py-5" style="background: #0f211582; padding: 60px;">
<div class="row justify-content-start">
<div class="col-lg-8 text-center text-lg-start">
<h1 class="display-1 text-uppercase text-white mb-lg-4">COCO IoT</h1>
<h1 class="text-uppercase text-white mb-lg-4">Helps to keep the coconut cultivation healthy</h1>
<p class="fs-5 text-white mb-lg-4 text-paragraph">The coconut tree plays a significant role in Sri
Lankan culture and agriculture because the island offers year-round ideal conditions for coconut
cultivation.
Sri Lanka is currently one of the world's top exporters of coconut after being involved in the
industry since the time of British colonial rule (19th century). </p>
<div class="d-flex align-items-center justify-content-center justify-content-lg-start pt-5">
<a href="#readmore" class="btn btn-outline-light border-2 py-md-3 px-md-5 me-5">Read More</a>
<button type="button" class="btn-play" data-bs-toggle="modal"
data-src="https://www.youtube.com/watch?v=ovYnsxYyPa0" data-bs-target="#videoModal">
<span></span>
</button>
<h5 class="font-weight-normal text-white m-0 ms-4 d-none d-sm-block">Play Video</h5>
</div>
</div>
</div>
</div>
</div>
<!-- Hero End -->
<!-- Video Modal Start -->
<div class="modal fade" id="videoModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content rounded-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Youtube Video</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- 16:9 aspect ratio -->
<div class="ratio ratio-16x9">
<iframe class="embed-responsive-item" src="" id="video" allowfullscreen
allowscriptaccess="always" allow="autoplay"></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Video Modal End -->
<!-- About Start -->
<section id="about">
<div class="container-fluid py-5">
<div class="container">
<div class="row gx-5">
<div class="col-lg-5 mb-5 mb-lg-0" style="min-height: 425px;">
<div class="position-relative h-100">
<img class="position-absolute w-100 h-100 rounded" src="img/mainimage.jpg"
style="object-fit: cover;">
</div>
</div>
<div class="col-lg-7">
<div class="border-start border-5 border-primary ps-5 mb-5">
<h6 class="text-primary text-uppercase">About Us</h6>
<h1 class="display-5 text-uppercase mb-0">Keep Your Plantation Healthy All Time</h1>
</div>
<h4 class="text-body mb-4">COCO IoT helps to predict coconut related pests infestations without
harming the coconut palm</h4>
<div class="bg-light p-4">
<ul class="nav nav-pills justify-content-between mb-3" id="pills-tab" role="tablist">
<li class="nav-item w-50" role="presentation">
<button class="nav-link text-uppercase w-100 active" id="pills-1-tab"
data-bs-toggle="pill" data-bs-target="#pills-1" type="button" role="tab"
aria-controls="pills-1" aria-selected="true">Our Mission</button>
</li>
<li class="nav-item w-50" role="presentation">
<button class="nav-link text-uppercase w-100" id="pills-2-tab" data-bs-toggle="pill"
data-bs-target="#pills-2" type="button" role="tab" aria-controls="pills-2"
aria-selected="false">Our Vission</button>
</li>
</ul>
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-1" role="tabpanel"
aria-labelledby="pills-1-tab">
<p class="mb-0"> To help coconut growers easily identify pests infestations and
diseases
related to coconut palms without harming the coconut plants. </p>
</div>
<div class="tab-pane fade" id="pills-2" role="tabpanel" aria-labelledby="pills-2-tab">
<p class="mb-0">Make the Sri Lankan Coconut industry more Productive and Healthier
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About End -->
<section id="readmore">
<!-- Offer Start -->
<div class="container-fluid bg-offer my-5 py-5">
<div class="container py-5">
<div class="row gx-5 justify-content-start text-display-bg">
<div class="col-lg-9">
<div class="border-start border-5 border-white ps-5 mb-5">
<h6 class="text-white text-uppercase">Our Product</h6>
<h1 class="display-5 text-uppercase text-white mb-0">What is COCO IoT..?</h1>
</div>
<p class="text-white mb-4">The coconut tree plays a significant role in Sri Lankan culture and
agriculture because the island offers year-round ideal conditions for coconut cultivation.
Sri Lanka is currently one of the world's top exporters of coconut after being involved in
the
industry since the time of British colonial rule (19th century).
</p>
<p class="text-white mb-4">Since then it has been identified many forms of diseases and
infections
that contributed to major degradation in cultivation in terms of its productive output. In
this
research two major infections are taken into the consideration. To identify proper
mitigation
methods and come up with better overall solutions to minimize the impact by identifying them
in
their early stages. Also, research comes in as a modern-day solution that is ideal to be
used in
the production environment which also houses some of the modern frameworks and concepts like
Deep learning and CNN and Mask-R-CNN. Following are the details are broken down into each of
the
infections that are addressed in this research along with their corresponding infection.
</p>
<p class="text-white mb-4">Whitefly disease is one of the newly found diseases which can damage
the
coconut tree. Whiteflies first attack the coconut leaf and produce sugary-like substances on
the
leaf.Plesispa beetle infection categorizes as a minor pest infection that affects most young
coconut palms. Plesispa beetle first feeds on the young unopened leaflets and when those
leaflets open tissues inside those leaflets will die and leaflets will be shriveled and torn
also.The red weevil has been another major outbreak in worldwide palm variants. This has
been
hugely impacting the productivity of coconut cultivation as well. In the case of red weevil
infection exposure to the impact is merely visible to the outside environment.
</p>
<p class="text-white mb-4">As a solution for identity of those whitefly & Plesispa beetle
infestaion
from proposed system, an image Capturing device is introduced and after capturing whitefly
infected leaves and plesispa infected leaves those images are predicted through our system
and
results are shared among users.To detect Redweevil infestation proposed a viable solution to
identify the infection in its early stages utilizing an audio analyzing method that also
makes
use advanced of deep learning technologies like CNN and audio processing technologies like
Spectrogram generation with Fast Fourier operations.
</p>
</div>
</div>
</div>
</div>
<!-- Offer End -->
</section>
<!-- Devices Start -->
<section id="product">
<div class="container-fluid py-5">
<div class="container">
<div class="row gx-5">
<div class="col-lg-5 mb-5 mb-lg-0" style="min-height: 425px;">
<div class="position-relative h-100">
<img class="position-absolute w-100 h-100 rounded" src="img/image-device.png"
style="object-fit: contain;">
</div>
</div>
<div class="col-lg-7">
<div class="border-start border-5 border-primary ps-5 mb-5">
<h6 class="text-primary text-uppercase">Device 1</h6>
<h1 class="display-5 text-uppercase mb-0">Image Capture Device</h1>
</div>
<p class="text-body mb-4">There are two main objectives for the Image Capturing Device. They are
to capture images of coconut leaves from coconut palms or seedlings. and to capture images
at normal ranges of the coconut tree. Normally to capture images from tall coconut trees, a
drone system or climbing is needed and both approaches have practical limitations. On the
other hand, the image capturing device can capture images with a 3-meter maximum range with
720p image quality. Three types of images are captured from the image capturing device. They
are images of whitefly-infested coconut leaves, images of Plesispa-infested coconut leaves,
and images of coconut pests on the plantation.
</p>
<p class="text-body mb-4">
Initially a webcam is connected to the higher end of an extendible stick rod, while the
other end is connected to an HDMI touch screen. The webcam is used to get a live preview and
to capture images of infested leaves using Raspberry Pi. For the capturing process, an
python file is implemented and that file is scripted to run when booting the Raspberry Pi.
After running the python script an opencv frame is displayed inside the HDMI screen. Inside
the frame an live steam of web camera is displayed and after touching from the pen used for
HDMI screen image can be captured which displayed in the HDMI screen
</p>
</div>
</div>
</div>
</div>
<div class="container-fluid py-5">
<div class="container">
<div class="row gx-5">
<div class="col-lg-7">
<div class="border-start border-5 border-primary ps-5 mb-5">
<h6 class="text-primary text-uppercase">Device 2</h6>
<h1 class="display-5 text-uppercase mb-0">Audio Capture Device</h1>
</div>
<p class="text-body mb-4">The audio capture device and the wireless node are based on a
raspberry pi platform that features the latest Raspberry Pi 4B. Therefore thanks to much
higher CPU performance and RAM, it has been used to house the frontend applications for both
images capturing and audio capturing. With the concept of remote procedure calls over HTTP,
the device is able to remotely capture audio files from plants that it is connected with.
Audio files are captured via an INMP441 digital microphone that is upgraded with a
customized recording platform to harvest internal sounds of healthy and infected plants to
perform classification. Classification and prediction are produced based on a deep learning
model and advanced audio pre-processing concepts like STFT (Short-time-fast-Fourier). The
device is a portal and has a continuous operational duration of 1 hour with a lithium-ion
rechargeable battery. Finally, the device has the ability to overcome the most request
requirement and operations without active human interaction as it can be remotely controlled
over the internet in a secure manner. </p>
</div>
<div class="col-lg-5 mb-5 mb-lg-0" style="min-height: 425px;">
<div class="position-relative h-100">
<img class="position-absolute w-100 h-100 rounded" src="img/audio-device.png"
style="object-fit: contain;">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Devices End -->
<!-- Services Start -->
<div class="container-fluid py-5">
<div class="container">
<div class="border-start border-5 border-primary ps-5 mb-5" style="max-width: 600px;">
<h6 class="text-primary text-uppercase">Services</h6>
<h1 class="display-5 text-uppercase mb-0">COC-IoT Services</h1>
</div>
<div class="row g-5">
<div class="col-md-6">
<div class="service-item bg-light d-flex p-4">
<img src="./img/redweevil.svg" class="image-icon">
<div>
<h5 class="text-uppercase mb-3">Red Weevil Detection</h5>
<p>The palm weevil Rhynchophorus ferrugineus is one of two species of snout beetle known as
the red palm weevil, Asian palm weevil.</p>
<a class="text-primary text-uppercase" href="">Read More<i
class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item bg-light d-flex p-4">
<img src="./img/plesispa.svg" class="image-icon">
<div>
<h5 class="text-uppercase mb-3">Plesispa Detection</h5>
<p>Plesispa beetle Plesispa reichei Chapuis is one of the most serious pests in coconut
nurseries and young seedlings.</p>
<a class="text-primary text-uppercase" href="">Read More<i
class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item bg-light d-flex p-4">
<img src="./img/whitefly.svg" class="image-icon">
<div>
<h5 class="text-uppercase mb-3">WhiteFly Detection</h5>
<p>Whiteflies are Hemipterans that typically feed on the undersides of plant leaves. They
comprise the family Aleyrodidae.</p>
<a class="text-primary text-uppercase" href="">Read More<i
class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item bg-light d-flex p-4">
<img src="./img/hercules-beetle.svg" class="image-icon">
<div>
<h5 class="text-uppercase mb-3">Coconut Pest Identification</h5>
<p>This Detection system maily focuses on Black beetle, adult redweevil, coconut catepiller
and termite Detection</p>
<a class="text-primary text-uppercase" href="">Read More<i
class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Services End -->
<!-- Tech Start -->
<div class="container-fluid py-5">
<div class="container">
<div class="border-start border-5 border-primary ps-5 mb-5" style="max-width: 600px;">
<h6 class="text-primary text-uppercase">Technologies</h6>
<h1 class="display-5 text-uppercase mb-0">COCO-IoT used Technologies</h1>
</div>
<div class="owl-carousel product-carousel">
<div class="pb-5">
<div class="product-item position-relative bg-light d-flex flex-column text-center">
<img class="img-fluid mb-4" src="img/firebase-icon.svg" alt="">
<h6 class="text-uppercase">Firebase</h6>
</div>
</div>
<div class="pb-5">
<div class="product-item position-relative bg-light d-flex flex-column text-center">
<img class="img-fluid mb-4" src="img/raspberry-pi.svg" alt="">
<h6 class="text-uppercase">Raspberry pi</h6>
</div>
</div>
<div class="pb-5">
<div class="product-item position-relative bg-light d-flex flex-column text-center">
<img class="img-fluid mb-4" src="img/flask-icon.svg" alt="">
<h6 class="text-uppercase">Flask</h6>
</div>
</div>
<div class="pb-5">
<div class="product-item position-relative bg-light d-flex flex-column text-center">
<img class="img-fluid mb-4" src="img/google_cloud.svg" alt="">
<h6 class="text-uppercase">Google cloud</h6>
</div>
</div>
<div class="pb-5">
<div class="product-item position-relative bg-light d-flex flex-column text-center">
<img class="img-fluid mb-4" src="img/python.png" alt="">
<h6 class="text-uppercase">Python</h6>
</div>
</div>
<div class="pb-5">
<div class="product-item position-relative bg-light d-flex flex-column text-center">
<img class="img-fluid mb-4" src="img/tensorflow.png" alt="">
<h6 class="text-uppercase">Tensorflow</h6>
</div>
</div>
</div>
</div>
</div>
<!-- Tech End -->
<!-- Blog Start -->
<div class="container-fluid py-5">
<div class="container">
<div class="border-start border-5 border-primary ps-5 mb-5" style="max-width: 600px;">
<h6 class="text-primary text-uppercase">Documents</h6>
<h1 class="display-5 text-uppercase mb-0">COCO-IoT Project Related Documents</h1>
</div>
<div class="row g-5">
<div class="col-lg-6">
<div class="blog-item">
<div class="row g-0 bg-light overflow-hidden">
<div class="col-12 col-sm-5 h-100" style="text-align: center;">
<img class="img-fluid h-100" src="img/documents.png"
style="object-fit: contain;width: 200px;margin: auto;">
</div>
<div class="col-12 col-sm-7 h-100 d-flex flex-column justify-content-center">
<div class="p-4">
<div class="d-flex mb-3">
<small class="me-3"><i class="bi bi-bookmarks me-2"></i>Documents</small>
<small><i class="bi bi-calendar-date me-2"></i>14 Apr, 2022</small>
</div>
<h5 class="text-uppercase mb-3">Project Proposal</h5>
<p>This Folder is contating the documents realted to Project Proposal</p>
<a class="text-primary text-uppercase" href="https://drive.google.com/drive/folders/13sSipdbqDRM_jHnqRq9gA-Ztb8pDua00?usp=sharing">Open Folder<i
class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item">
<div class="row g-0 bg-light overflow-hidden">
<div class="col-12 col-sm-5 h-100" style="text-align: center;">
<img class="img-fluid h-100" src="img/documents.png"
style="object-fit: contain;width: 200px;margin: auto;">
</div>
<div class="col-12 col-sm-7 h-100 d-flex flex-column justify-content-center">
<div class="p-4">
<div class="d-flex mb-3">
<small class="me-3"><i class="bi bi-bookmarks me-2"></i>Documents</small>
<small><i class="bi bi-calendar-date me-2"></i>20 Sep, 2022</small>
</div>
<h5 class="text-uppercase mb-3">SRS Documents</h5>
<p>This Folder is contating the documents realted to Project SRS Documents</p>
<a class="text-primary text-uppercase" href="https://drive.google.com/drive/folders/1oFQB0M-0d7I00hLG3GO5lkqY9IGG4bCU?usp=share_link">Open Folder<i
class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row g-5 mt-2">
<div class="col-lg-6">
<div class="blog-item">
<div class="row g-0 bg-light overflow-hidden">
<div class="col-12 col-sm-5 h-100" style="text-align: center;">
<img class="img-fluid h-100" src="img/documents.png"
style="object-fit: contain;width: 200px;margin: auto;">
</div>
<div class="col-12 col-sm-7 h-100 d-flex flex-column justify-content-center">
<div class="p-4">
<div class="d-flex mb-3">
<small class="me-3"><i class="bi bi-bookmarks me-2"></i>Documents</small>
<small><i class="bi bi-calendar-date me-2"></i>11 May, 2022</small>
</div>
<h5 class="text-uppercase mb-3">Research Paper Document</h5>
<p>This Folder is contating the document realted to Project Research Paper</p>
<a class="text-primary text-uppercase" href="https://drive.google.com/drive/folders/1kOVsTTVqiSVkgwrA1pbRXiXpqsvl9fPN?usp=share_link">Open Folder<i
class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item">
<div class="row g-0 bg-light overflow-hidden">
<div class="col-12 col-sm-5 h-100" style="text-align: center;">
<img class="img-fluid h-100" src="img/documents.png"
style="object-fit: contain;width: 200px;margin: auto;">
</div>
<div class="col-12 col-sm-7 h-100 d-flex flex-column justify-content-center">
<div class="p-4">
<div class="d-flex mb-3">
<small class="me-3"><i class="bi bi-bookmarks me-2"></i>Documents</small>
<small><i class="bi bi-calendar-date me-2"></i>14 Nov, 2022</small>
</div>
<h5 class="text-uppercase mb-3">Final Documents</h5>
<p>This Folder is contating the documents realted to Project Final Documents</p>
<a class="text-primary text-uppercase" href="https://drive.google.com/drive/folders/1DSegxXFb6GD_ZDHDLAKPlIG-H6fUWHPZ?usp=share_link">Open Folder<i
class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Blog End -->
<!-- Team Start -->
<section id="team">
<div class="container-fluid py-5">
<div class="container">
<div class="border-start border-5 border-primary ps-5 mb-5" style="max-width: 600px;">
<h6 class="text-primary text-uppercase">Team Members</h6>
<h1 class="display-5 text-uppercase mb-0">COCO-IoT Developers</h1>
</div>
<div class="owl-carousel team-carousel position-relative" style="padding-right: 25px;">
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/salitha.svg" alt="">
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
<a class="btn btn-light btn-square mx-1"
href="https://www.linkedin.com/in/salitha-ekanayaka-58023b1b9"><i
class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">E.M.S.G. Ekanayake</h5>
<p class="m-0">Team Leader</p>
</div>
</div>
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/akash.svg" alt="">
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
<a class="btn btn-light btn-square mx-1"
href="https://www.linkedin.com/in/nirmith-akash-b65185201/"><i
class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">M.A.N.A. Anawaratne</h5>
<p class="m-0">Team Member</p>
</div>
</div>
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/taneesha.svg" alt="">
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
<a class="btn btn-light btn-square mx-1"
href="https://www.linkedin.com/in/taneesha-chandrasena-7b0761202/"><i
class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">T.K.T.A. Chandrasena</h5>
<p class="m-0">Team Member</p>
</div>
</div>
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/menaka.svg" alt="">
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
<a class="btn btn-light btn-square mx-1"
href="https://www.linkedin.com/in/dilanka-nandana-70a0951b9"><i
class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">G.M.D. Nandana</h5>
<p class="m-0">Team Member</p>
</div>
</div>
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/janaka-sir.svg" alt="">
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
<a class="btn btn-light btn-square mx-1"
href="https://www.linkedin.com/in/janakawijekoon/"><i
class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">Dr. Janaka Wijeekoon</h5>
<p class="m-0">Project Supervisor</p>
</div>
</div>
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/nayani-miss.svg" alt="">
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">Dr. Nayani S. Arachige </h5>
<p class="m-0">External Supervisor</p>
</div>
</div>
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/dilani-miss.svg" alt="">
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
<a class="btn btn-light btn-square mx-1"
href="https://www.linkedin.com/in/dilani-lunugalage-84b78433/"><i
class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">Ms. Dilani Lunugalage</h5>
<p class="m-0">Project Co-Supervisor</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team End -->
<section id="contact">
<!-- Contact Start -->
<div class="container-fluid pt-5 bg-contact">
<div class="container">
<div class="border-start border-5 border-primary ps-5 mb-5" style="max-width: 600px;">
<h6 class="text-primary text-uppercase">Contact Us</h6>
<h1 class="display-5 text-uppercase mb-0">Please Feel Free To Contact Us</h1>
</div>
<div class="row g-5">
<div class="col-lg-7">
<form>
<div class="row g-3">
<div class="col-12">
<input type="text" class="form-control bg-light border-0 px-4"
placeholder="Your Name" style="height: 55px;">
</div>
<div class="col-12">
<input type="email" class="form-control bg-light border-0 px-4"
placeholder="Your Email" style="height: 55px;">
</div>
<div class="col-12">
<input type="text" class="form-control bg-light border-0 px-4" placeholder="Subject"
style="height: 55px;">
</div>
<div class="col-12">
<textarea class="form-control bg-light border-0 px-4 py-3" rows="8"
placeholder="Message"></textarea>
</div>
<div class="col-12">
<button class="btn btn-primary w-100 py-3" type="submit">Send Message</button>
</div>
</div>
</form>
</div>
<div class="col-lg-5">
<div class="bg-light mb-5 p-5">
<div class="d-flex align-items-center mb-2">
<i class="bi bi-geo-alt fs-1 text-primary me-3"></i>
<div class="text-start">
<h6 class="text-uppercase mb-1">Our Campus</h6>
<span> SLIIT Malabe Campus, New Kandy Rd, Malabe 10115</span>
</div>
</div>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-envelope-open fs-1 text-primary me-3"></i>
<div class="text-start">
<h6 class="text-uppercase mb-1">Email Us</h6>
<span>info@sliit.lk</span>
</div>
</div>
<div class="d-flex align-items-center mb-4">
<i class="bi bi-phone-vibrate fs-1 text-primary me-3"></i>
<div class="text-start">
<h6 class="text-uppercase mb-1">Call Us</h6>
<span>+94 11 241 3901</span>
</div>
</div>
<div>
<iframe class="position-relative w-100"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3960.798511757687!2d79.97075581455891!3d6.914677495003794!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3ae256db1a6771c5%3A0x2c63e344ab9a7536!2sSri%20Lanka%20Institute%20of%20Information%20Technology!5e0!3m2!1sen!2slk!4v1636035697810!5m2!1sen!2slk"
frameborder="0" style="height: 205px; border:0;" allowfullscreen=""
aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact End -->
</section>
<!-- Footer Start -->
<div class="container-fluid bg-light py-5">
<div class="container pt-5">
<div class="row g-5">
<div class="col-lg-3 col-md-6">
<h5 class="text-uppercase border-start border-5 border-primary ps-3 mb-4">Get In Touch</h5>
<p class="mb-4">You can Contact Us at Anytime</p>
<p class="mb-2"><i class="bi bi-geo-alt text-primary me-2"></i> SLIIT Malabe Campus, <br /> <span
style="margin-left: 30px;">Kandy Rd,</span> <br /> <span style="margin-left: 30px;">Malabe
10115.</span> </p>
<p class="mb-2"><i class="bi bi-envelope-open text-primary me-2"></i>info@sliit.lk</p>
<p class="mb-0"><i class="bi bi-telephone text-primary me-2"></i>+94 11 241 3901</p>
</div>
<div class="col-lg-3 col-md-6">
<h5 class="text-uppercase border-start border-5 border-primary ps-3 mb-4">Quick Links</h5>
<div class="d-flex flex-column justify-content-start">
<a class="text-body mb-2" href="#"><i class="bi bi-arrow-right text-primary me-2"></i>Home</a>
<a class="text-body mb-2" href="#"><i class="bi bi-arrow-right text-primary me-2"></i>About
Us</a>
<a class="text-body mb-2" href="#"><i class="bi bi-arrow-right text-primary me-2"></i>Our
Services</a>
<a class="text-body mb-2" href="#"><i class="bi bi-arrow-right text-primary me-2"></i>Meet The
Team</a>
<a class="text-body" href="#"><i class="bi bi-arrow-right text-primary me-2"></i>Contact Us</a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<h5 class="text-uppercase border-start border-5 border-primary ps-3 mb-4">Popular Links</h5>
<div class="d-flex flex-column justify-content-start">
<a class="text-body mb-2" href="#"><i class="bi bi-arrow-right text-primary me-2"></i>Home</a>
<a class="text-body mb-2" href="#"><i class="bi bi-arrow-right text-primary me-2"></i>About
Us</a>
<a class="text-body mb-2" href="#"><i class="bi bi-arrow-right text-primary me-2"></i>Our
Services</a>
<a class="text-body mb-2" href="#"><i class="bi bi-arrow-right text-primary me-2"></i>Meet The
Team</a>
<a class="text-body" href="#"><i class="bi bi-arrow-right text-primary me-2"></i>Contact Us</a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<h5 class="text-uppercase border-start border-5 border-primary ps-3 mb-4">Newsletter</h5>
<form action="">
<div class="input-group">
<input type="text" class="form-control p-3" placeholder="Your Email">
<button class="btn btn-primary">Sign Up</button>
</div>
</form>
<h6 class="text-uppercase mt-4 mb-3">Follow Us</h6>
<div class="d-flex">
<a class="btn btn-outline-primary btn-square me-2" href="#"><i class="bi bi-twitter"></i></a>
<a class="btn btn-outline-primary btn-square me-2" href="#"><i class="bi bi-facebook"></i></a>
<a class="btn btn-outline-primary btn-square me-2" href="#"><i class="bi bi-linkedin"></i></a>
<a class="btn btn-outline-primary btn-square" href="#"><i class="bi bi-instagram"></i></a>
</div>
</div>
<div class="col-12 text-center text-body">
<a class="text-body" href="">Terms & Conditions</a>
<span class="mx-1">|</span>
<a class="text-body" href="">Privacy Policy</a>
<span class="mx-1">|</span>
<a class="text-body" href="">Help</a>
<span class="mx-1">|</span>
<a class="text-body" href="">FAQs</a>
</div>
</div>
</div>
</div>
<div class="container-fluid bg-dark text-white-50 py-4">
<div class="container">
<div class="row g-5">
<div class="col-md-6 text-center text-md-start">
<p class="mb-md-0">© <a class="text-white" href="#">COCO-IoT</a>. All Rights Reserved.
</p>
</div>
<div class="col-md-6 text-center text-md-end">
<p class="mb-0">Designed by <span class="text-white">COCO-IoT</span></p>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-primary py-3 fs-4 back-to-top"><i class="bi bi-arrow-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>