-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1077 lines (1034 loc) · 41.3 KB
/
index.html
File metadata and controls
1077 lines (1034 loc) · 41.3 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
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Impact | Hackers' Club</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="shortcut icon" href="assets/img/logo/ico//logo-32.png" />
<link
href="https://fonts.googleapis.com/css?family=Nunito+Sans:200,300,400,600,700,800,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css" />
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/aos.css" />
<link rel="stylesheet" href="css/ionicons.min.css" />
<link rel="stylesheet" href="css/bootstrap-datepicker.css" />
<link rel="stylesheet" href="css/jquery.timepicker.css" />
<link rel="stylesheet" href="css/flaticon.css" />
<link rel="stylesheet" href="css/icomoon.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/baguetteBox.css" />
</head>
<style type="text/css">
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
color: white;
font-weight: bold;
}
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
color: red;
}
.detail-info {
border: 2px solid #17a2b8;
padding: 10px;
border-radius: 5px;
margin-bottom: 20px;
}
.quetion_icon_tag {
position: absolute;
left: 2px;
top: -14px;
}
.icon_background {
z-index: 1;
position: absolute;
left: 2px;
width: 35px;
height: 20px;
background-color: white;
}
.blog-entry .meta > div a {
color: white;
}
.blog-entry .meta > div a:hover {
color: white;
}
.time_box {
color: white !important;
}
.author_name {
display: inline !important;
}
.project_name {
transition: 0.3s all ease;
color: #1162fb !important;
display: block;
text-align: initial;
}
.img_project_div {
height: auto !important;
}
</style>
<body>
<nav
class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light"
id="ftco-navbar"
>
<div class="container">
<!-- <a class="navbar-brand" href="index.html">Impact 1.0</a> -->
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#ftco-nav"
aria-controls="ftco-nav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="oi oi-menu"></span> Menu
</button>
<div class="collapse navbar-collapse" id="ftco-nav">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a href="#" class="nav-link">Home</a></li>
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#timeline" class="nav-link">Timeline</a>
</li>
<li class="nav-item">
<a href="#coordinators" class="nav-link">Coordinators</a>
</li>
</ul>
</div>
</div>
</nav>
<div
class="hero-wrap"
style="background-image: url('img/home/bg_1.jpg')"
data-stellar-background-ratio="0.5"
>
<div class="overlay"></div>
<div class="container">
<div
class="row no-gutters slider-text align-items-center justify-content-start"
data-scrollax-parent="true"
>
<div
class="col-lg-6 col-md-6 ftco-animate"
data-scrollax=" properties: { translateY: '70%' }"
>
<h1
style="color: white"
class="mb-4"
data-scrollax="properties: { translateY: '30%', opacity: 1.6 }"
>
<span style="text-transform: unset">Impact 1.0</span>
<br />Machine Learning Workshop
</h1>
<p
style="color: white"
class="mb-4"
data-scrollax="properties: { translateY: '30%', opacity: 1.6 }"
>
<span class="icon-calendar mr-2"></span>30 November 2020 - Zoom
Webinar Series
</p>
<div id="timer" class="d-flex">
<div class="time" id="days"></div>
<div class="time pl-3" id="hours"></div>
<div class="time pl-3" id="minutes"></div>
<div class="time pl-3" id="seconds"></div>
</div>
<br />
<button
type="button"
class="btn btn-success btn-lg"
style="margin-top: 10px"
>
<span class="time">
<a class="badge badge-success" href="#timeline">
View Timeline
<i class="fa fa-arrow-right" aria-hidden="true"></i>
</a>
</span>
</button>
</div>
<!-- <div class="col-lg-2 col"></div> -->
<div class="col-lg-4 col-md-6 mt-0 mt-md-5" style="opacity: 80%">
<form class="request-form ftco-animate">
<h2 style="text-decoration: underline">Registration</h2>
<div class="form-group">
<p
style="
text-align: justify;
font-size: 16px;
color: black;
font-weight: bold;
"
>
To join with us at Impact 1.0 register through the following
link:
</p>
<p
class="reg_link"
style="
background-color: red;
font-weight: bold;
padding: 10px;
border-radius: 4px;
"
>
<a
href="https://forms.gle/2E9MhwaVd8eaqMK27"
target="_blank"
style="color: white"
>Click to Register</a
>
</p>
<p
style="
text-align: justify;
font-size: 16px;
margin-top: 30x;
color: black;
font-weight: bold;
"
>
Stay tuned with us. We will continue to update Impact 1.0
website throughout the workshop duration!
</p>
</div>
</form>
</div>
</div>
</div>
</div>
<!--about-->
<section id="about" class="ftco-section ftco-no-pt ftco-no-pb">
<div class="container">
<div class="row no-gutters">
<div
class="col-md mr-md-5 ml-md-5 pr-md-3 pl-md-3 wrap-about pt-md-5 ftco-animate"
>
<div class="heading-section mb-5 pt-5 text-secondary">
<div class="pr-md-5 mr-md-5">
<h2 class="mb-4">Overview</h2>
</div>
<p style="text-align: justify">
<strong>IMPACT</strong> is an educational programme organized by
the <strong>Hackers’ Club</strong>, which is aiming to enrich
the quality of the undergraduate students in Computer
Engineering related knowledge as well as in the soft-skills. We
will guide you to differentiate yourself and empower your
university journey to achieve your dreams.
</p>
</div>
</div>
</div>
<div class="row no-gutters">
<div
class="col-md mr-md-5 ml-md-5 pr-md-3 pl-md-3 wrap-about ftco-animate"
>
<div class="heading-section mb-5 text-secondary">
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center heading-section ftco-animate">
<h3 class="mb-3">Impact 1.0</h3>
</div>
</div>
<p style="text-align: justify">
This time <strong>IMPACT 1.0</strong> focuses on Machine
Learning Workshop consists of a webinar series and a series of
challenges. which aims students to deep dive into the data
driven world with real impact. At the end of each webinar
session, students will be given a
<strong>Kaggle</strong> challenge to compete in order to be
inspired to have hands-on experiences.
</p>
</div>
</div>
</div>
</div>
</section>
<!--timeline-->
<section id="timeline" class="ftco-section">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center heading-section ftco-animate">
<h2 class="mb-3">Impact 1.0 Schedule</h2>
</div>
</div>
<div class="ftco-schedule">
<div class="row">
<div class="col-md-1 nav-link-wrap text-center text-md-right"></div>
<div class="col-md-10 tab-wrap">
<div class="tab-content" id="v-pills-tabContent">
<div
class="tab-pane fade show active"
id="v-pills-1"
role="tabpanel"
aria-labelledby="day-1-tab"
>
<div class="icon_background">
<i
class="fa fa-clock-o fa-2x quetion_icon_tag"
aria-hidden="true"
style="color: #17a2b8"
></i>
</div>
<!-- <div class="speaker-wrap ftco-animate d-md-flex detail-info">
<div class="text">
<h2><a>Commencement of Impact 1.0 2020</a></h2>
<span class="time"><a class="badge badge-info time_box">08:30 am - 9:00 am</a></span>
</div>
</div> -->
<div class="icon_background">
<i
class="fa fa-clock-o fa-2x quetion_icon_tag"
aria-hidden="true"
style="color: #17a2b8"
></i>
</div>
<div class="speaker-wrap ftco-animate d-md-flex detail-info">
<div
class="img speaker-img img_project_div"
style="
background-image: url(img/coordinators/damayanthi.jpg);
"
></div>
<div class="text">
<h2><a>Introduction to Machine Learning</a></h2>
<span class="time"
><a class="badge badge-info time_box"
>30th Nov. 2020</a
></span
>
<span class="time"
><a class="badge badge-info time_box"
>6:00 pm - 7:00 pm</a
></span
>
<ul style="list-style-type: square; text-align: justify">
<li>
<a class="project_name">Defining Key Concepts</a>
</li>
<li>
<a class="project_name">Different Learning Methods</a>
</li>
<li>
<a class="project_name"
>Overall pipeline of an ML project</a
>
</li>
</ul>
<h3 class="speaker-name">
—
<a
href="http://www.ce.pdn.ac.lk/academic-staff/damayanthi-herath/"
target="_blank"
>Dr. Damayanthi Herath</a
>
<span class="position"
>Lecturer at Department of Computer Engineering,
Faculty of Engineering, University of
Peradeniya.</span
>
</h3>
</div>
</div>
<div class="icon_background">
<i
class="fa fa-clock-o fa-2x quetion_icon_tag"
aria-hidden="true"
style="color: #17a2b8"
></i>
</div>
<div class="speaker-wrap ftco-animate d-md-flex detail-info">
<div
class="img speaker-img"
style="
background-image: url(img/coordinators/chamila.jpg);
"
></div>
<div class="text">
<h2><a>Classification with WEKA</a></h2>
<!-- <p>All are welcome. The prerequisites are enthusiasm, open mind and curiosity…</p> -->
<span class="time"
><a class="badge badge-info time_box"
>06th Dec. 2020</a
></span
>
<span class="time"
><a class="badge badge-info time_box"
>10:00 am - 10:30 am</a
></span
>
<p style="text-align: justify">
Description about the session.
</p>
<h3 class="speaker-name">
—
<a
href="https://www.cse.iitm.ac.in/~rangan/"
target="_blank"
>Dr. Chamila Walgampaya</a
>
<span class="position"
>Senior Lecturer at Department of Engineering
Mathematics, Faculty of Engineering, University of
Peradeniya.</span
>
</h3>
</div>
</div>
</div>
<div class="icon_background">
<i
class="fa fa-clock-o fa-2x quetion_icon_tag"
aria-hidden="true"
style="color: #17a2b8"
></i>
</div>
<div class="icon_background">
<i
class="fa fa-clock-o fa-2x quetion_icon_tag"
aria-hidden="true"
style="color: #17a2b8"
></i>
</div>
<div class="speaker-wrap ftco-animate d-md-flex detail-info">
<div
class="img speaker-img"
style="background-image: url(img/coordinators/deegalla.jpg)"
></div>
<div class="text">
<h2><a>Text Processing</a></h2>
<span class="time"
><a class="badge badge-info time_box"
>13th Dec. 2020</a
></span
>
<span class="time"
><a class="badge badge-info time_box"
>12:30 pm - 1:00 pm</a
></span
>
<p style="text-align: justify">
Some Description about the course
</p>
<h3 class="speaker-name">
—
<a
href="https://www.linkedin.com/in/manosekaram/"
target="_blank"
>Mr. Sampath Deegalle</a
>
<span class="position"
>Senior Lecturer at Department of Computer Engineering,
Faculty of Engineering, University of Peradeniya.</span
>
</h3>
</div>
</div>
<div class="icon_background">
<i
class="fa fa-clock-o fa-2x quetion_icon_tag"
aria-hidden="true"
style="color: #17a2b8"
></i>
</div>
<div class="speaker-wrap ftco-animate d-md-flex detail-info">
<div
class="img speaker-img img_project_div"
style="background-image: url(img/coordinators/iroshan.jpg)"
></div>
<div class="text">
<h2><a>Keras and Tensorflow libraries</a></h2>
<span class="time"
><a class="badge badge-info time_box"
>20th Dec. 2020</a
></span
>
<span class="time"
><a class="badge badge-info time_box"
>1:00 pm - 2:00 pm</a
></span
>
<p style="text-align: justify">Some Description Here.</p>
<h3 class="speaker-name">
—
<a
href="https://www.linkedin.com/in/manosekaram/"
target="_blank"
>Mr. Iroshan Abeyratne</a
>
<span class="position"
>Lecturer at Faculty of Engineering, University of
Jayawardhanepura.</span
>
</h3>
</div>
</div>
<div class="icon_background">
<i
class="fa fa-clock-o fa-2x quetion_icon_tag"
aria-hidden="true"
style="color: #17a2b8"
></i>
</div>
<div class="speaker-wrap ftco-animate d-md-flex detail-info">
<div
class="img speaker-img img_project_div"
style="background-image: url(img/coordinators/dulakshi.jpg)"
></div>
<div class="text">
<h2><a>Time Series Analysis</a></h2>
<span class="time"
><a class="badge badge-info time_box"
>27th Dec. 2020</a
></span
>
<span class="time"
><a class="badge badge-info time_box"
>1:00 pm - 2:00 pm</a
></span
>
<p style="text-align: justify">Some Description Here.</p>
<h3 class="speaker-name">
—
<a
href="https://www.linkedin.com/in/manosekaram/"
target="_blank"
>Dr. Dulakshi Karunasinghe</a
>
<span class="position"
>Senior Lecturer at Faculty of Engineering, University
of Peradeniya.</span
>
</h3>
</div>
</div>
<!-- <div class="speaker-wrap ftco-animate d-md-flex detail-info">
<div class="text">
<h2><a>Awards Ceremony and the Conclusion of Impact 1.0</a></h2>
<span class="time"><a class="badge badge-info time_box">2:15 pm - 2:30 pm</a></span>
</div>
</div> -->
<!-- <div class="tab-pane fade" id="v-pills-2" role="tabpanel" aria-labelledby="v-pills-day-2-tab">
<div class="speaker-wrap ftco-animate d-md-flex">
<div class="img speaker-img" style="background-image: url(img/home/staff-4.jpg);"></div>
<div class="text">
<h2><a href="#">Introduction to Business Leaders</a></h2>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<span class="time">09:00 am - 4:30 pm</span>
<p class="location"><span class="icon-map-o mr-2"></span>20 July 2019 - Hall, Building Los Angeles CA</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<h3 class="speaker-name">— <a href="#">Ryan Thompson</a> <span class="position">Founder of Wordpress</span></h3>
</div>
</div>
<div class="icon_background">
<i class="fa fa-clock-o fa-2x quetion_icon_tag" aria-hidden="true" style="color: #17a2b8;"></i>
</div>
<div class="speaker-wrap ftco-animate d-md-flex">
<div class="img speaker-img" style="background-image: url(img/home/staff-1.jpg);"></div>
<div class="text">
<h2><a href="#">Introduction to Business Leaders</a></h2>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<span class="time">09:00 am - 4:30 pm</span>
<p class="location"><span class="icon-map-o mr-2"></span>20 July 2019 - Hall, Building Los Angeles CA</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<h3 class="speaker-name">— <a href="#">Ryan Thompson</a> <span class="position">Founder of Wordpress</span></h3>
</div>
</div>
<div class="icon_background">
<i class="fa fa-clock-o fa-2x quetion_icon_tag" aria-hidden="true" style="color: #17a2b8;"></i>
</div>
<div class="speaker-wrap ftco-animate d-md-flex">
<div class="img speaker-img" style="background-image: url(img/home/staff-2.jpg);"></div>
<div class="text">
<h2><a href="#">Introduction to Business Leaders</a></h2>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<span class="time">09:00 am - 4:30 pm</span>
<p class="location"><span class="icon-map-o mr-2"></span>20 July 2019 - Hall, Building Los Angeles CA</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<h3 class="speaker-name">— <a href="#">Ryan Thompson</a> <span class="position">Founder of Wordpress</span></h3>
</div>
</div>
</div> -->
<!-- <div class="tab-pane fade" id="v-pills-3" role="tabpanel" aria-labelledby="v-pills-day-3-tab">
<div class="icon_background">
<i class="fa fa-clock-o fa-2x quetion_icon_tag" aria-hidden="true" style="color: #17a2b8;"></i>
</div>
<div class="speaker-wrap ftco-animate d-md-flex">
<div class="img speaker-img" style="background-image: url(img/home/staff-3.jpg);"></div>
<div class="text">
<h2><a href="#">Introduction to Business Leaders</a></h2>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<span class="time">09:00 am - 4:30 pm</span>
<p class="location"><span class="icon-map-o mr-2"></span>20 July 2019 - Hall, Building Los Angeles CA</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<h3 class="speaker-name">— <a href="#">Ryan Thompson</a> <span class="position">Founder of Wordpress</span></h3>
</div>
</div>
<div class="icon_background">
<i class="fa fa-clock-o fa-2x quetion_icon_tag" aria-hidden="true" style="color: #17a2b8;"></i>
</div>
<div class="speaker-wrap ftco-animate d-md-flex">
<div class="img speaker-img" style="background-image: url(img/home/staff-4.jpg);"></div>
<div class="text">
<h2><a href="#">Introduction to Business Leaders</a></h2>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<span class="time">09:00 am - 4:30 pm</span>
<p class="location"><span class="icon-map-o mr-2"></span>20 July 2019 - Hall, Building Los Angeles CA</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<h3 class="speaker-name">— <a href="#">Ryan Thompson</a> <span class="position">Founder of Wordpress</span></h3>
</div>
</div>
<div class="icon_background">
<i class="fa fa-clock-o fa-2x quetion_icon_tag" aria-hidden="true" style="color: #17a2b8;"></i>
</div>
<div class="speaker-wrap ftco-animate d-md-flex">
<div class="img speaker-img" style="background-image: url(img/home/staff-1.jpg);"></div>
<div class="text">
<h2><a href="#">Introduction to Business Leaders</a></h2>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<span class="time">09:00 am - 4:30 pm</span>
<p class="location"><span class="icon-map-o mr-2"></span>20 July 2019 - Hall, Building Los Angeles CA</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<h3 class="speaker-name">— <a href="#">Ryan Thompson</a> <span class="position">Founder of Wordpress</span></h3>
</div>
</div>
</div> -->
</div>
</div>
<div class="col-md-1 nav-link-wrap text-center text-md-right"></div>
</div>
</div>
</div>
</section>
<!-- Modal -->
<div class="modal fade" id="abstract_div" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
</div>
<div class="modal-body">
<h4 class="title_project"></h4>
<p class="abstract_set_div">Some text in the modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">
Close
</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="project_div" role="dialog">
<div class="modal-dialog modal-dialog-1">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
</div>
<div class="modal-body">
<h3 class="title_project_more"></h3>
<button type="button" class="btn btn-danger btn-sm">
<span class="time">
<a class="badge badge-danger project_more_link" target="_blank">
<i class="fa fa-link" aria-hidden="true"></i> Link to
project</a
>
</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-4">
<img class="project_set_div_img_1" width="100%" />
</div>
<div class="col-md-8">
<p class="project_set_div_1" style="text-align: justify"></p>
</div>
</div>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-8">
<p class="project_set_div_2" style="text-align: justify"></p>
</div>
<div class="col-md-4">
<img class="project_set_div_img_2" width="100%" />
</div>
</div>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-4">
<img class="project_set_div_img_3" width="100%" />
</div>
<div class="col-md-8">
<p class="project_set_div_3" style="text-align: justify"></p>
</div>
</div>
</div>
<center>
<div class="modal-body authors_list_show"></div>
</center>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">
Close
</button>
</div>
</div>
</div>
</div>
<!-- call for paper -->
<div class="modal fade" id="call_for_paper_div" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
</div>
<div class="modal-body">
<h4>Call for papers</h4>
<p style="text-align: justify">
ESCaPe seeks research papers describing significant and innovative
research contributions to all aspects of Computer Engineering. We
invite submissions on a wide range of research topics, spanning
both theoretical and systems research.
</p>
<p>
Submit your papers
<a href="https://easychair.org/cfp/escape2020" target="_blank"
>here</a
>
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">
Close
</button>
</div>
</div>
</div>
</div>
<!--Coordinators-->
<section
id="coordinators"
class="ftco-section testimony-section ftco-no-pt"
>
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center heading-section ftco-animate">
<h2 class="mb-3">Workshop Coordinators</h2>
</div>
</div>
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center heading-section ftco-animate">
<h4 class="mb-3">Lecturers</h4>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="testimony-wrap text-center py-4 pb-5">
<div
class="user-img mb-4"
style="background-image: url(img/coordinators/deegalla.jpg)"
></div>
<div class="text pt-4">
<p class="name">Mr. Sampath Deegalla</p>
<span class="position">Senior Lecturer</span>
<p class="mb-4">
He received Ph.Lic. (2011) in Computer and Systems Sciences
from Stockholm University, Sweden and B.Sc. Eng. (2002) in
Computer Engineering from University of Peradenya, Sri Lanka.
</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="testimony-wrap text-center py-4 pb-5">
<div
class="user-img mb-4"
style="background-image: url(img/coordinators/damayanthi.jpg)"
></div>
<div class="text pt-4">
<p class="name">Dr. Damayanthi Herath</p>
<span class="position">Lecturer</span>
<p class="mb-4">
She graduated with a B.Sc. (Hons) in Computer Engineering,
University of Peradeniya in the year 2012. She was a member of
the Optimisation and Pattern Recognition Research Group of
Melbourne School of Engineering, The University of Melbourne
as a Ph.D. candidate from 2015-2018.
</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="testimony-wrap text-center py-4 pb-5">
<div
class="user-img mb-4"
style="background-image: url(img/coordinators/chamila.jpg)"
></div>
<div class="text pt-4">
<p class="name">Dr. Chamila Walgampaya</p>
<span class="position">Senior Lecturer</span>
<p class="mb-4">
He earned his B.Sc. in Computer Engineering with honours in
November 2001 from the Faculty of Engineering, University of
Peradeniya. He earned his Ph.D. in August 2011 from the School
of Engineering at the University of Louisville.
</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="testimony-wrap text-center py-4 pb-5">
<div
class="user-img mb-4"
style="background-image: url(img/coordinators/dulakshi.jpg)"
></div>
<div class="text pt-4">
<p class="name">Dr. Dulakshi Karunasinghe</p>
<span class="position">Senior Lecturer</span>
<p class="mb-4">
She graduated with a B.Sc. in Civil Engineering, University of
Peradeniya in 1998.
</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center heading-section ftco-animate">
<h4 class="mb-3">Visiting Lecturers</h4>
</div>
</div>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8">
<div class="testimony-wrap text-center py-4 pb-5">
<div
class="user-img mb-4"
style="background-image: url(img/coordinators/iroshan.jpg)"
></div>
<div class="text pt-4">
<p class="name">Mr. Iroshan Abeyratne</p>
<span class="position">Lecturer</span>
<p class="mb-4">Description about the coordinator</p>
</div>
</div>
</div>
<div class="col-md-2"></div>
</div>
</div>
</section>
<!--gallery-->
<section
class="ftco-section testimony-section ftco-no-pt"
style="display: none"
>
<div class="container">
<div class="gallery_presentation gallery">
<a
href="img/project_1/presentation/1.jpg"
class="image_first_slide_project_1"
>
<img class="image_first_slide_project_1" alt="" />
</a>
<a href="img/project_1/presentation/2.jpg"></a>
</div>
</div>
<div class="container">
<div class="gallery_presentation gallery">
<a
href="img/project_2/presentation/1.jpg"
class="image_first_slide_project_2"
>
<img class="image_first_slide_project_2" alt="" />
</a>
<a href="img/project_2/presentation/2.jpg"></a>
</div>
</div>
</section>
<footer class="ftco-footer ftco-bg-dark ftco-section pb-4">
<center>
<div class="container">
<div class="row mb-5">
<div class="col-md">
<div class="ftco-footer-widget mb-4 mt-4">
<h2 class="ftco-heading-2">Organized by</h2>
<a
class="navbar-brand"
href="https://hackersuop.github.io/"
target="_blank"
style="background-color: white; width: 130px"
>
<img
src="img/logo/hackers_black.png"
alt="logo"
style="width: 115px; margin-top: -3px"
/>
</a>
</div>
</div>
<!-- <div class="col-md">
<div class="ftco-footer-widget mb-4 ml-md-5">
<h2 class="ftco-heading-2">Useful Links</h2>
<ul class="list-unstyled">
<ul class="ftco-footer-social list-unstyled mt-5">
<li class="ftco-animate"><a href="#"><span class="icon-twitter"></span></a></li>
<li class="ftco-animate"><a href="https://www.facebook.com/hackersclub.impact/" target="_blank"><span class="icon-facebook"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="icon-instagram"></span></a></li>
</ul>
</ul>
</div>
</div> -->
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2">More Links</h2>
<ul class="list-unstyled">
<li>
<a
href="http://www.ce.pdn.ac.lk/"
class="py-2 d-block"
target="_blank"
>ce.pdn.ac.lk</a
>
</li>
<li>
<a
href="https://eng.pdn.ac.lk/"
class="py-2 d-block"
target="_blank"
>eng.pdn.ac.lk</a
>
</li>
<li>
<a
href="https://aces.ce.pdn.ac.lk/"
class="py-2 d-block"
target="_blank"
>aces.ce.pdn.ac.lk</a
>
</li>
</ul>
</div>
</div>
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2">Have Questions?</h2>
<div class="block-23 mb-3">
<ul>
<li>
<span class="icon icon-map-marker"></span>
<span class="text"
>Hackers' Club, University of Peradeniya, Peradeniya,
20400, Sri Lanka</span
>
</li>
<li>
<a
><span class="icon icon-phone"></span>
<span class="text">+9477 1021 518</span>
</a>
</li>
<li>
<a
><span class="icon icon-phone"></span>
<span class="text">+9471 1129 448</span>
</a>
</li>
<li>
<a
><span class="icon icon-envelope"></span>