-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
928 lines (870 loc) · 50.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
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
<!doctype html>
<html class="no-js" lang="zxx">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title> ICAISE 2023 | DCS CUSAT </title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS here -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/slicknav.css">
<link rel="stylesheet" href="assets/css/flaticon.css">
<link rel="stylesheet" href="assets/css/gijgo.css">
<link rel="stylesheet" href="assets/css/animate.min.css">
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<link rel="stylesheet" href="assets/css/fontawesome-all.min.css">
<link rel="stylesheet" href="assets/css/themify-icons.css">
<link rel="stylesheet" href="assets/css/slick.css">
<link rel="stylesheet" href="assets/css/nice-select.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css">
<script type="text/javascript" src="https://me.kis.v2.scr.kaspersky-labs.com/FD126C42-EBFA-4E12-B309-BB3FDD723AC1/main.js?attr=r8e2OFgtqoqBQTpnK2vWHxX0Mcph1KM3pTrTtRXUbicfjCLrcpjAG28J_BwI81VlQQZTyQicr8sRhblF89-cEUgCyOdt4bkDOCx1lqna55-ay3gnuttI3IEm7tAIlcTdU_aomZ7wZzvrPIa7oX4o7xdajfime-FWluCIOFizgMzaxcXmmDjEIvXOgDuDknRK2BwkcchPy8OvXH1Qtshjhc-Bw-cysI0XWFwLHA5UgxogfPcQnE2TEIJeTSMWr_TiqoafsH1mnOyYsu2XXC-31gdFeUXwmRntymajqgPKXZ9nGGUoLCb1XsbivZjmY_JHoesGNsg68O5Og-0iNI5NB1K-Wjn1_pNLLM6TD3AKPqhsy2OPUcxE1uvi0vgJtbOhY2mC1qhws5mmnY9_SnXs59J9098rbgA10wnsCaeJy4dmoGihFKC9U7gdPsuDm59oOPit4r3ifcVyY4b59KjYHPXIf1r3YnS6Y90UP68wEA2hA4CYuCejff4eXn1sNHmvM_rSjMaKWBJM_TA61WTkk9CzS8XtOCjT9096HYjugZQtfxRqyeEYZRKVv2Stn4nPrplqlpEKqCWjR2Pf03LZ3OGh37TNsodTIgI8-tT4BmEC3ZYAib8h4p1A7VN0PZosG9uABFsImnyWzi_bqROZhIt2C6BEoKFdWfcfznqkRSUNCEZvNMBur5yq3b3xR79pPFopW7NvL-S_ENS8kzViQJMLaSo6NCk_E8lG0ZCKKnR6e7eoi2F4znsfG1eqqwIjc0WQrwcBGTXBcSYdRJ9XvcLPuItWxuLDwBHsSfepDpmC7JB-vY__0S1nGGi0b-B04Jdf4E9QrzEeabA0NVVydWPqxL6w5PumiESbmcq7DcSXFXH2Y0azU60AGj8Dx3iQoI0mQclbd5D73X66UgMMTpI7tquUxwNGWutU5JPvu98JNm-RbhjbOXlFBRB21ar0vV46eqnp2_bY5_Sedd0Pt_fKFq85Ncukxwmt9qbusjKj0VpkPSCuv5SLfr9TDIWoXcfO2kEeqtvHf4bejrXIDnxIC6ZZvJKsA07dE1JP5MbfO2Ue3w8de9TIzqFL7aXYeqQ5VAAdYibGjYJI7boDMJ7Zh6EkXSCHjbyujOLLjKr-vJLsCFZZm8cYY-HwAmY7J3Ft-JYZ9lNeX3YQb-lHRHbqM1E2bRtxOhRxmpermgcueAOMQJcXDWmCHAD5kXVV9JqfLPzDcfGsB0E-fcSM2EYZ4VzDMFjnMqAQSvMq3adrrgldfZQlF4g8gdCj2IdQf-RHgC0-_pCy-rvHoQEnbhzx-3QJFsz2_y0ktAsfbrLVT9Or7t7IgejRel4yDUoAFnnzQfc5rbzRFWnzhW2bpkKciQEEc-IYRCtshtuXB3HvcKcpjGCOzH0FhzBuImoVm1F3oPNWTtxTCtokBLHVH0AikrDzhTos3qltiESJ9QX-i8AK5EOGOMuAJi4z5phcK7Ta2mXpYjcrIw4ihoPtRW4kPOBQ9n1Um8QF9m-EhlS_DykAQqUxGe7bz9ufGynjwcElaV-xSDkwM750iSXKtrHEh4aEbuL8ya1lkCVmeSX95wFjdHxv54CEQqnVzSO1iBgpy2Ne_WVfrPJqAU7iyi-wFHjpHvY0fLn6Bhf5nFlWOfTnONBiJZjnXGbZ-uSXg4YB97mpaDl8htfj0v4EqMoINxGOUB0_b91Hi97n9KWcnum8unX-rNgNFGDcZsdpzNF0mUMETIMBMX81SQHwrVvE9jl-FF1M9YM2suSe20HrDaMUTpEZTIMt6l7AfwsG" nonce="c53b424aed4cf234339e514f14b3442c" charset="UTF-8"></script><script type="text/javascript" src="https://me.kis.v2.scr.kaspersky-labs.com/FD126C42-EBFA-4E12-B309-BB3FDD723AC1/main.js?attr=93VY0BZRK1D2AhqwHZE7vHeSZIMF4z1xuLHP5F9BaEqb4CgrJtYLUWosUwmA3erRUtWU4TUxwln-ROpvkaalaAcuTvUPlIeIAG59f6L-wzsFucGZng3VS1Jzu5opP0aFSjFVvocAGS-4MgI-tp-XCEKIDzbx56URYZazDy3KMenSUdPr1E6hOT0XNQuRwqWQNMjskBqqAeU9XBmp5kNYd5SsRS_hdYj93CSECPxSmAd88ifmUHJKM8YC3uRJrbc6Hkhtxmx-VlYpZc1CMYry-9pY1FRom5UIt9pmktUe0KHXvP8_-Vj_M3jsxvfNmgwjid5jtAuC3CJJUnuzRqqAhaHP70hTP-jBQWNpllFlhBFOggB2V0li7ZZ6BSU2Ebpx3aWBsCmqki1eCHvIOWNJ2_48WaUB2U2eNsNWHkBHYaeC4p46DY-1tzlzhUtwVguWWxWybFmwFEXfEj3KzaWVZWxW_qOdr1suHdrp-zbXovdS2aRDqz8LNUyDnkrv_mJndokjCheXDsLRTAtvyXR9SRMcMypsL2n6t3xuYcyjt21wX22cgwCJTLJzDSw5KE4h38DjBygca_pPGt05TODIZVzRXb7TqtvlEDT2JKrMSUO2jzbaFlFAba8x91mXGTIkqgZLFfDomQt9pem4nQT3qWFnDyPRYIUZJkOfeWOqjuNNU5b9Zjdsx64_Ig0z-fePex9jhM3R1FxpJXJGAwkGr_jDfL0LDJX3AmC7TqMpGZzJwfhiJ-b_Q5BFn978zVAXnVY7ZCHa_AL1ZjzTFyg1N0MW1idBPcmi9qbwbEBN5tXl__f1qs0rzRAUjcrBpMKc3TFev7Net1JtIhx2zN1_ryg1-ntZRJdpIy_ykw60juZMP0oM5xwXpH0PUX9Dg0PKJtAUbSE1De9P-zI8rv3BQp7QHVNpoZ72DviQGExAPyqr83Je54sfHSYf7MMFRICD3adecJh4aHAS8ws11lLjz-aITDxaZ-IC_RjWluNciDi5fLzNmFD-GT95AvkBmBPibCgzcR_EAEj7tQ1PVGfVntG38sKIEkSrJ0DwmzlTxVTKdpJKGM1PuU-giBU42tCzKUYUaS-zoBq0f7JuRYkyjAhGZoQVJ6zq2beYsYQuiiYUo2F1xIoekM7rO8KeOgJej8w2owqD6Fr6qTUJ2ec9Tap7HILHRhWsnjD1gEmdEbdZO0bhYRTD3sBzM2wknOVLWQChIXChvLz-NGERGXMJ18sYcIwrgZU_Yhj11xiJ0pU4ugaUjGYBWQmoWZsXpOkXVgAE2F74Z__jf7IYVwG6uG0rQClbRoNBT8LJEa1GU20gds-OFPwBuQEeEwirajjpdIlZO-hu-Q2ubOkIAHoUZiBUTqN-DHnEaj1PKyI6QNw3gXc0dGMKPgcmM-gAWIucTcLBzIAazn9hVBpP4VfJU2p2mV_efHrowzwV-CuIx_gfeFYJQPu0p1dvqNhoMzEcsLqYPzYEq8gStFF8ky00FzSLeTLSDeLtn2AIKH7jQ8DPy95DsdZFNEX_-EJGyh2PiEnqTjv64ZKvmMtMvVfYSL47kMbcMUqY3oTOwQj83oD3bM_pfcO9CaV231dp89HvgxbENn6ML02_Y9ztDpPiqw4eTXkKNGYk5qHiUiJcMqoA3lR7Ly9KUqHueo-k0XdJ4Ewdop-HLvmZmaOzhDp_69bb0nacDVTU2cBc0QyZ2NTCIITkap7Gg0LWvmA1XZ6qtyOPivFt_UCB5usr2IR-4SXjxDEmtQ7tOvQ5TC4vdL-U2YF22-S9WJPuNF_mWSBe" nonce="97a7c1ae12468ac38d92a902082e39d0" charset="UTF-8"></script><script type="text/javascript" src="https://me.kis.v2.scr.kaspersky-labs.com/FD126C42-EBFA-4E12-B309-BB3FDD723AC1/main.js?attr=1aqQIvXiIAskvsN8E1THgA1IXeUc5PfbnpqSjTPWMN4tsuJLRYBxTG6j97PBpV_vicXhbaemK3miYWDe0tg_g0gIwpXqqMTLJiMtETBjwJsni_DEKMt8Fkd11VfEHABp4IiDWRyrpVdPg5O1i99ys__xPBRGNpehzjU1HXit-fRttkxlaejvO2DIGVLxVcE1nMNn2g2Mo3e3nawhQzrlMQxmUWlVQ84kGiHlx0HmIa0k5yNMKMyGEj6UxqNNANq0wR4vtqakHf4nScwoLOFNuDVdc_J_T9Fh5E1xKFvcE4NW4qochG52_502Vt_VYMwRyNlwqLIYydu44dimszLiVQqe63zaLyh_R31nMz7cmdre8x_P2sgKvh2hYzGVLdv9LEJYfsMaoeAquwPI0kwOKGBVRk1WrW1gBEd2W_s4f6recSIDdpTA9KtlGZ0zweb1AeWfUeV-Hpv-rYHhWQwgWZX_YUCgpFw5LQ3DI2lfPS2pABykpwZNcHL__2GkBSxNpXDY_EPHWVo7yA-esUpmznffyp9ZEJJIjkPRUawmnljtFFpVknG-LatOBGokA-aK7GTzKFvBhXcm9PnEXIen9OGmKfJSScXsvMtV_D4SPXh8R8yDRI5pjqVQuNvvKA_wG0tbY9HNTg3-Z8tBqX9PGJt5pQbuHmhqYa3pTRYH_nJEy93i2nQR2xomkbN8LscU0wDPmT2c_c3-jzGPrpcQCbkMroC3P6ude89FxKdNKbegUU-AdQTktFD9-Wf2LDq_0bD5e4bAI0a9is47gJ_65-1bE4eNuS8iN6_azdDwOE2KUkEOqsZnHQYzX2APbGM18nIyOusNAGnfK8QJphG8cuyzS03bCGlXQ5PT_NRq4_X0uFKv6FVpuBF8JQNJNlTAZCQANlp4h8TiMfdUOSCqM2FoS_QhNBTOmUAx5IYoFUtdqDBSyTu58fbGidvh9mrPWZktIyGol8EW5kVIQ2rZM8dAdmn8xko9aIgLPnYQC9zfBrVVVrNPBF5Jt8PjvCdiLHtfm8YWipYsdDeW8UmJLnmdN3n0P49Jk6TCOrpsduoP07uO0QOLEt4OiFUsg1EPmxxH40ZKoa_f5O6m_wfmdWS3Z1JZQZ-f1-uSOJvcQ5OgqeAKnAG_JxNKdhStr5Hw_wmXJkK9n2KiRRh7hJbWyO9Ta2WwJfyiBI8eAk1v07IG2Z7xbD6DAXvOKNCQ3FjCUSNEjGivszcnZzDqvDfC4-Bie8doEhp5dJ_3bcHTxW2YOgwc2uy6AXLcvTm5G7hnF1z8mWqtTcZiZHIt_QGvMWGVkzuwP_mwhU3cF4a-DvN69w0G9qSx354vyHlFwDmd_HvBxGAPrCQK-79jb_NEc74_Rdup4AwV2SRIBsOSENDH1TrpUPlPsqznBwzr4_14WkPOUyi-qfQINu0zmD0Q2ogWHx9Bm-W8xUI0ZqWXfOA9TLsCwG6kRGulqPre-Ye8EkFnThUNMnmtjjFOpFJb3TrgKBNLYjwzidgTKLANoTWEMAqktj2cMwPI_a8DU0SItCfoxyLTJOywAuguqEToo71tTUr8xahkpLcHXUxY-MyH-O4qK5j71PwSpfm8tBUi8zygx4qLFJn8ifTsClIlgXkwTOsXOnA6QHLVsTGcdfhx7bxACbyBUSJtNgmFimPt4r1iDYmmsHYr5zjSU5kZGfYWbv7xyN6cf1SuiGPQdTQOnzkEbuRlE53SW4LALIEQchnAkAhEYkfNlrOtTO36hBKGNWb-qP8ArtO_fXzk09I5sxQ31-UFr4lT2EhUXnUp" nonce="a3b95f61265a8eb13214b2ac8fa6b8cb" charset="UTF-8"></script><script type="text/javascript" src="https://me.kis.v2.scr.kaspersky-labs.com/FD126C42-EBFA-4E12-B309-BB3FDD723AC1/main.js?attr=iVuKJ0VM_TAJKTY-DTcPfxDP05cD3VZeXX3xhJ86mAfRjntbz4A2z7q3L_5tz0ikg0Qze2ac9UyWcOUmRU2MYBX192WF6Fbq78amPTsn6PnwvrUazUiYdJ1WCHSjwDVs7iPHHpvx01uV9ivmgcL8Oqe3h5q2O9ffOY-alcWjs_oA5uG0oJMXk4P6ACJJohMGW4t3rmOhIjI3bB9fzoLe4jdkTuG83cwVRhkgK_n9Gco9Kt8RQQob76u6DXBPSxkSH_coIWHoB2AfZbbLWhePwK2uUvF88cXJ9Cqca8LJ3u8slwB1cgFusZKSoQ19lmRSU_hhvwsplb4_tCYZ7JgvjwwaFtZM9tJyP5IHv-sZhoLD4Gx7AC2reCyVRoUxpOhlENdu4jBWfOJtBfv46FZke-hVLVXtHzUwWPzXAqUpZyuEpTX05dusImITgmBWgx1EUARk0AvTfjkfIY2cx_7DlNLPd7hvQQWgy_tbZfeDlIS6prAMjh9-vn_6BCMfzqJnoFPSXPJ5OB8kObLT_rwQl2NT-NzaaoDJs5i0gPuApi8v1KcCjSGAl4Gsh3hkKXtbacGYIlncEFcLAe558SbpcUf62cIat8Q5NBBLF1QDhxmT8_VWXK6TAFQBI0e2j9N0t2Zl0aKSs-0OdrWrQU7o52HCt7Vbah0l44FEl1I42pyhtjh5FklAlLwMnpnBLxiIUeMhRrOqbmcELnRFhqm1Yo33Re0nlmV2VDFlpe5ofoVZtxKdIUgs7jy1HS1XJiKJuyRfC4w_fsDio2vkLHJ4ZgsEEaR7EBP_J8XQp1Ax2Jlfe4tyPD2BavHAd8zS0wa47D75_mCtHjWl7jAs3dVWs2wc3uQUx1rz4o2pLerp4_qC7opPf16M5iQ_tAjuB7LYSrIk7WZxEiZmNfua3jcBNEG-wxb64OrDsx1I7yjnmHr1Ik8Kruw8hfSFQInEmUF9JHS9uuhq8Y6lkHtOnu1RB0sfbirpiGY1BuqJrwbq7-KzFjoWZjPSMv-qIml4N4HNhyyoMBa4G617esZvzDubX4vpH_8VXxg_cXxFMJ8pLndchFwCHnidiIWQ0FGPTLaiZ_xCDInRJq5JAxv82uDkirXKkZS5-6XVmJHsJ8Evb8Owj0cFbLDVxd12dSUqvyZMSrlkxZ2xSz0gOtd0eA62DQ36Ze7yHzxegyLU1BHBOp5V69nZp9ARRmdRvTihI8kgo7g5OnugKzfgDmFyP7r0WcqOwdfR71fvBfjYsJd8AKsdFFZYOjvcacIIRCj1rBqCrq-wEptcCT-pjXuHYnKpd1QLGVXhHJhiium1QdLOpVhfw5_DlAwL5EHyiQ7xq-tXdiRPwuQ6fyEYsobLfw97S-2uGwbVUqnBfMV03rVjVkE98C1AcQFM0qz7aUABYu2JziFk2HICZrf0ul79sn7rxYOs5NKs-Rp54EuwJSXFwKCmETf2IJackS-Nw3L_065qdY_Bk3rpv6i6rpyFtV0ySjQhX-7_XpnoXDTHWSpJ_NON9OIlXOMuPThYS0kpPS3V6MRa8lUY93d_mn4qImRMfRbaftgPTBvX2O9YssgyrMUEnfsoDertIommuXiJYXpaT8g0mLVLfDXZ9C8w8DvpDraKqqwYvIkz9Jzs2ZC5p5z_F2bf4AgFtFB5HUQrmqJCas7b04uX_IQy_P4jM8iC_C0LajHMt6mIG9nOmKJajElvB7qqtpmFCQO_FVuqfvYTxEwSUuE12wjTuiL-KV_zfqc-uTwW5eeOQsGUoAALhX9EEJMD_ttuixHYJgGnKFw1" nonce="31435dff445d9b45a0efb62045c5a51a" charset="UTF-8"></script></head>
<body>
<style>
html{
scroll-behavior: smooth;
}
</style>
<!-- ? Preloader Start -->
<div id="preloader-active">
<div class="preloader d-flex align-items-center justify-content-center">
<div class="preloader-inner position-relative">
<div class="preloader-circle"></div>
<div class="preloader-img pere-text">
<img src="https://cusat.ac.in/files/pictures/pictures_1_logo.png" alt="">
</div>
</div>
</div>
</div>
<!-- Preloader Start -->
<header>
<!--? Header Start -->
<div class="header-area">
<div class="main-header header-sticky">
<div class="container-fluid">
<div class="row align-items-center">
<!-- Logo -->
<div class="col-xl-3 col-lg-3 col-md-4 col-6">
<div class="logo">
<a href="index.html" style="color: rgb(41, 0, 189);" class="h4"><img src="assets/img/logo/icaise.png" alt="" class="img-fluid" srcset=""></a>
</div>
</div>
<div class="col-xl-9 col-lg-9 col-md-6">
<div class="menu-main">
<!-- Main-menu -->
<div class="main-menu f-right d-none d-lg-block">
<nav>
<ul id="navigation">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#tracks">Conference Tracks</a></li>
<li><a href="schedule.html">Program Schedule</a></li>
<li><a href="album.html">Photos</a></li>
<li><a href="index.html#committee">Committee</a></li>
<li><a href="index.html#contact-details">Contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div class="col-12">
<div class="mobile_menu d-block d-lg-none"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Header End -->
</header>
<main>
<!--? slider Area Start-->
<div class="slider-area position-relative">
<div class="slider-active">
<!-- Single Slider -->
<div class="single-slider slider-height d-flex">
<div class="container">
<div class="row">
<div class="col-10">
<div class="hero__caption pb-5">
<h2 data-animation="fadeInLeft" data-delay=".5s" class="text-white h1 pt-5 pb-5">ICAISE 2023 KOCHI - International Conference on Artificial Intelligence & Software Engineering, Kochi</h2>
<!-- <h1 data-animation="fadeInLeft" data-delay=".5s" >ICAISE 2023 - International Conference on Artificial Intelligence & Software Engineering</h1> -->
<!-- Hero-btn -->
<div class="slider-btns">
<h3 data-animation="fadeInLeft" data-delay=".5s" class="text-white mt-2"><strong>15-17th March 2023</strong></h3>
<!-- <a data-animation="fadeInLeft" data-delay="1.0s" href="industries.html" class="btn hero-btn rounded">Register</a>
<button type="button" data-animation="fadeInLeft" data-delay="1.0s" class="btn btn-warning" style="width: 120px !important;">Register</button> -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <style>
.cd-item{
width: 100% !important;
font-weight: bold !important;
}
</style> -->
<!-- Counter Section Begin -->
<!-- <div class="counter-section d-none d-sm-block">
<div class="cd-timer" >
<div class="cd-item">
<span>15 ‐ 17 March 2023</span>
</div>
</div>
</div> -->
<!-- Counter Section End -->
</div>
<!-- slider Area End-->
<!--? About Law Start-->
<section class="about-low-area section-padding2" id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="about-caption mb-50">
<!-- Section Tittle -->
<div class="section-tittle mb-35">
<h2>ICAISE 2023 KOCHI</h2>
</div>
<p>
ICAISE 2023 KOCHI, the International Conference on Artificial Intelligence & Software
Engineering, Kochi is a major interdisciplinary international conference, providing a
forum for researchers, engineers, practitioners and educators to meet, present
and discuss the most recent research results, innovations, trends, experiences,
and concerns in the field of Artificial Intelligence & Software Engineering with its
applications in the real world.
<br><br>
ICAISE 2023 KOCHI is to be held at Department of Computer Science, Cochin University of
Science and Technology (CUSAT) Kochi, India, during 15-17th March, 2023.
</p>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-10">
<div class="single-caption mb-20">
<div class="caption-icon">
<span class="flaticon-communications-1"></span>
</div>
<div class="caption">
<h5>Where</h5>
<p>
Department of Computer Science,
<br>
Cochin University of Science & Technology
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-10">
<div class="single-caption mb-20">
<div class="caption-icon">
<span class="flaticon-education"></span>
</div>
<div class="caption">
<h5>When</h5>
<p>15 - 17 March, 2023</p>
</div>
</div>
</div>
<style>
/* .sponsors img{
mix-blend-mode: color-burn !important;
} */
</style>
<div class="col-12 pt-2">
<h2 class="mt-4 mb-4 font-weight-bold">Technical Co-Sponsor</h2>
<div class="col-12 pt-4 sponsors">
<div class="col-10 col-md-3 col-lg-2">
<img src="assets/img/sponsors/wfsc_newLogo.jpg" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
<!-- <button type="button" class="btn btn-outline-secondary mt-2" style="width: 120px;">Register</button> -->
</div>
<!-- <div class="col-lg-6 col-md-12">
about-img
<div class="about-img "> -->
<!-- <div class="about-font-img d-none d-lg-block">
<img src="assets/img/gallery/about2.png" class="img-fluid" alt="">
</div> -->
<!-- <div class="about-back-img ">
<img src="assets/img/gallery/about2.png" class="" alt="">
</div>
</div>
</div> -->
</div>
</div>
</section>
<!-- About Law End-->
<!--? Brand Area Start -->
<section class="team-area pt-100 pb-100 section-bg">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- Section Tittle -->
<div class="section-tittle section-tittle mb-50 justify-content-center pt-6">
<h2 class="text-center p-6 text-primary" style="color: #26264b !important">AK Menon Endowment Lecture</h2>
<!-- <p>There arge many variations ohf passages of sorem gpsum ilable, but the majority have suffered alteration in.</p>
<a href="#" class="btn white-btn mt-30">View Spackert</a> -->
</div>
</div>
<style>
.team-caption{
text-align: left !important;
}
.team-caption p{
text-align: left !important;
}
.team-caption h3 a{
text-align: left !important;
text-transform: none !important;
}
</style>
<div class="col-12 d-block d-md-flex row">
<div class="col-lg-4 col-md-6 col-12">
<div class="single-team mb-30">
<div class="team-img">
<img src="assets/img/speakers/Dr PJ Narayanan Photo.jpg" alt="">
</div>
<div class="team-caption">
<h3 class="w-100" style="color:black !important"><a href="#" style="color:black !important">Prof. P. J. Narayanan</a></h3>
<p style="color:black !important">Director,<br>International Institute of Information Technology,<br>IIIT Hyderabad</p>
<!-- <p><strong> Topic: "${topic}"</strong> </p> -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="team-area pt-100 pb-100 section-bg" data-background="assets/img/gallery/section_bg02.png">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- Section Tittle -->
<div class="section-tittle section-tittle2 mb-50 justify-content-center pt-6">
<h2 class="text-center pt-6">Keynote Speakers</h2>
<!-- <p>There arge many variations ohf passages of sorem gpsum ilable, but the majority have suffered alteration in.</p>
<a href="#" class="btn white-btn mt-30">View Spackert</a> -->
</div>
</div>
<style>
.team-caption{
text-align: left !important;
}
.team-caption p{
text-align: left !important;
}
.team-caption h3 a{
text-align: left !important;
text-transform: none !important;
}
</style>
<div id="speaker-card" class="col-12 d-block d-md-flex row">
</div>
</div>
</div>
</section>
<section class="pricing-card-area section-padding2" style="padding-bottom: none !important;" id="tracks">
<div class="container">
<!-- Section Tittle -->
<div class="row justify-content-center">
<div class="col-12">
<div class="section-tittle text-center mb-100">
<h2>Conference Tracks</h2>
<p>ICAISE 2023 invites novel, innovative and original breakthrough research findings in the following topics:</p>
</div>
</div>
</div>
<style>
.single-card{
background-color: #31118f !important;
min-height: 600px !important;
}
.single-card h5{
color: white !important;
font-weight: bold;
text-transform: capitalize;
}
.single-card h6{
color: white !important;
font-weight: bold;
text-transform: capitalize;
}
.single-card p{
color: white !important;
/* line-height: normal !important; */
}
@media only screen and (max-width: 600px) {
.single-card{
min-height: none !important;
}
}
</style>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-10">
<div class="single-card text-center mb-30">
<div class="card-top">
<h6>Track A</h6>
<h5>Intelligent Computing</h5>
</div>
<div class="card-bottom">
<p class="text-justify">
Affective computing, Cognitive Computing, data analytics for cyber resilience,
Knowledge representation techniques, Case-based reasoning, Commonsense
reasoning, Theory and practice of AI creativity, AI for painting, metaverse, fashion
and design, cross-modal art generation, aesthetics understanding, Authentication
and copyright protection, Decision Support Systems, Evolutionary algorithms,
Genetic algorithms, Support Vector Machines, Nature Inspired Computing,
Computational Optimization, Clustering, Image and Video Processing, Signal &
Speech processing, Fuzzy Systems, Neural Networks and machine Learning
Systems, Deep Learning, Expert Systems, Data Mining
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-10">
<div class="single-card text-center mb-30">
<div class="card-top">
<h6>Track B</h6>
<h5>Devices and Systems</h5>
</div>
<div class="card-bottom">
<p class="text-justify">
Intelligent Manufacturing, AI driven Internet of Things, Sensors and Applications,
Industrial Automation and Robotics, e-waste and Green Manufacturing,
Technology and Industrial Management. Quantum Information Science, Quantum
algorithms, New Quantum Solver approaches, Quantum Machine Learning, VLSI,
Application Specific Architectures, Embedded and Reconfigurable Systems,
Advanced Computer Architectures, Cyber physical Systems, Energy and AI,
Embedded Computing, Scalable Computing, Mobile Computing, Pervasive
computing.
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-10">
<div class="single-card text-center mb-30">
<div class="card-top">
<h6>Track C</h6>
<h5>Software and Distributed systems</h5>
</div>
<div class="card-bottom">
<p class="text-justify">
Block chain based protocols and Algorithms, Block chain for Governance, Hadoop
and Map Reduce techniques, Cognitive Communications and Networking, Grid
Computing, Cloud Computing, Cyber security, Cryptography, e-commerce, e-
learning, Cloud Assisted Smart Learning, Computational Linguistics, Social media
computing, Sentimental Analysis, Natural Language Processing, Software
Language Design, AI driven Requirements engineering, Software Design,
Maintenance, Automated software Testing, Knowledge based Reengineering and
reverse engineering, Software metrics, Program comprehension
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-10">
<div class="single-card text-center mb-30">
<div class="card-top">
<h6>Track D</h6>
<h5>Medical and Health Informatics</h5>
</div>
<div class="card-bottom">
<p class="text-justify">
Wearable Computing, AI powered surgical Robots, Bio-informatics, Computational Biology, Biochips, Biometrics, Platforms for drug Discovery, Forecasting Diseases, Assistive technology, Predictive Analysis, Functional Genomics, Clinical documentation, Nutritional Bioinformatics, Forensics, Neuroscience, cognitive science and psychology, Medical Image Analysis, Radiology Artificial Intelligence.
</p>
</div>
</div>
</div>
<style>
.submit-button{
color: #10285d !important;
border-color: #10285d !important;
}
.submit-button:hover{
color: #ffffff !important;
border-color: #10285d !important;
background-color: #10285d !important;
}
</style>
<div class="col-12">
<h2 class="mt-4 mb-4 font-weight-bold">Paper Submission</h2>
<p> Papers written in English can be submitted as a single PDF file
with a maximum size limit of 6 pages and should follow the A4 double column format.
All papers must be submitted through the Microsoft CMT online submission
platform using the link given below
</p>
<a class="btn btn-primary mt-2" href="https://cmt3.research.microsoft.com/ICAISEKochi2023" role="button">Link for Submission</a>
</div>
<div class="col-12">
<h2 class="mt-4 mb-4 font-weight-bold">Publications</h2>
<p> The proceedings of ICAISE 2023 Kochi will be published by CUSAT with ISBN number 978-81-961282-0-3. Soft copy
of the proceedings will be made available to all registered participants.
Extended versions of selected few Best Papers from ICAISE 2023 proceedings will be considered for publication in
<!-- <br>1.Elsevier Journal of Computer Languages<br>
2.Elsevier Applied Soft Computing<br>
This selection is done after the conference. -->
<!-- -->
<br>1.Elsevier Journal of Computer Languages: Paper ids - 31, 30<br>
2.Elsevier Applied Soft Computing: Paper ids - 24, 26, 20 <br>
Corresponding authors of the selected papers will get the invitation from Journal for an extended version.
<br><br>
<a href="https://icaise.cusat.ac.in/ICAISE2023_Web_version.pdf" class="btn btn-success">ICAISE 2023 Kochi Proceedings</a>
</p>
</div>
</div>
</div>
</section>
<section class="pricing-card-area section-padding2" style="padding-top: 0 !important;" id="dates">
<div class="container">
<!-- Section Tittle -->
<div class="row justify-content-center">
<div class="col-lg-5 col-md-8">
<div class="section-tittle text-center mb-100">
<h2>Important Dates</h2>
</div>
</div>
</div>
<div class="row">
<style>
table, th, td {
border: 2px solid black !important;
padding: 1.5rem;
border-collapse: collapse !important;
}
</style>
<table class="table table-bordered p-5" width="100%">
<thead>
<tr>
</tr>
</thead>
<tbody>
<tr>
<td width="50%">Submission Deadline</td>
<td><strike>31 January 2023 </strike> 9 February 2023 ( Closed )</td>
</tr>
<tr>
<td >Acceptance Notification</td>
<td>22 February 2023 (Sent to Emails)</td>
</tr>
<tr>
<td>Early-Bird registration Deadline</td>
<td>27 February 2023</td>
</tr>
<tr>
<td>Standard Registration Deadline</td>
<td>12 March 2023</td>
</tr>
<tr>
<td>Camera Ready Submission Deadline</td>
<td>6 March 2023</td>
</tr>
<tr>
<td>Conference Dates</td>
<td>15 ‐ 17 March 2023</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<section class="pricing-card-area section-padding2" id="registration">
<div class="container">
<!-- Section Tittle -->
<div class="row justify-content-center">
<div class="col-12">
<div class="section-tittle text-center mb-100">
<h2>Registration</h2>
</div>
</div>
</div>
<div class="col-12 mb-4">
<p>
At least one of the authors should register for the conference.
Authors & Participants can register for the conference using the Link
given below. You can avail discounted rates by registering before
the Early-Bird registration Deadline given under Important Dates.
You can register early and do the camera ready submission later.
</p>
<a href="https://forms.gle/vKdRcFjNMZjUGbCy9" class="btn btn-primary">Register</a>
<a href="https://www.onlinesbi.sbi/sbicollect/icollecthome.htm?corpID=5382210" class="btn btn-success">Payment Link</a>
</div>
<!--Registration Link:
-->
<div class="row">
<h2 class="font-weight-bold">Registration Fees</h2>
<table class="table table-striped mt-4 md-4">
<thead>
<tr>
<th scope="col">Category</th>
<th scope="col">Early-Bird Rates</th>
<th scope="col">Standard Rates</th>
</tr>
</thead>
<tbody>
<tr>
<td>Foreign Authors</td>
<td>300 $</td>
<td>400 $</td>
</tr>
<tr>
<td>Indian Authors</td>
<td>4000 INR</td>
<td>5000 INR</td>
</tr>
<tr>
<td>CUSAT Community Authors</td>
<td>3000 INR</td>
<td>4000 INR</td>
</tr>
<tr>
<td>Foreign (Non-Author/Additional Author Participants)</td>
<td>100 $</td>
<td>200 $</td>
</tr>
<tr>
<td>Indian (Non-Author/Additional Author Participants)</td>
<td>1000 INR</td>
<td>2000 INR</td>
</tr>
<tr>
<td>DCS Alumni</td>
<td>1000 INR</td>
<td>1000 INR</td>
</tr>
</tbody>
</table>
<!-- Fee Payment -->
<!-- <div class="col-12 mt-4">
<h2>How to pay fees : via State Bank of India</h2>
<h3 class="mt-3">Account Details</h3>
</div> -->
</div>
</div>
</section>
<!-- Brand Area End -->
<!--? accordion -->
<!-- accordion End -->
<!--? speakers Start -->
<!-- speakers End -->
<!--? Pricing Card Start -->
<!-- Pricing Card End -->
<!--? Brand Area Start-->
<section class="work-company section-padding30" id="committee" data-background="assets/img/gallery/section_bg02.png">
<div class="container">
<div class="row align-items-center">
<div class="col-12 d-flex justify-content-center">
<!-- Section Tittle -->
<div class="section-tittle section-tittle2 mb-50">
<h2>Committee</h2>
</div>
</div>
<style>
.logo-area h3{
color: white;
font-family: "Sarabun",sans-serif;
}
.logo-area h5{
color: white;
font-family: "Sarabun",sans-serif;
}
.logo-area h3{
margin-bottom: 10px !important;
margin-top: 22px !important;
}
</style>
<div class="col-12">
<div class="logo-area">
<div class="row">
<style>
.chairs h5{
font-style: italic !important;
}
.chairs h2{
color: white !important;
font-weight: bold !important;
padding: 20px 0 14px !important;
/* border-bottom:solid white 2px; */
}
</style>
<div class="col-12 col-lg-6 chairs">
<h2>Patron</h2>
<h5>Prof.(Dr.) K.N Madhusoodanan</h5>
<h5>Vice Chancellor, CUSAT</h5>
<h2>General Chairs</h2>
<h5>• Muralidharan K B</h5>
<h5>Cochin University of Science and Technology</h5>
<h5>• David Peter S</h5>
<h5>Cochin University of Science and Technology</h5>
<h2>Program Chair</h2>
<h5>Philip Samuel</h5>
<h5>Cochin University of Science and Technology</h5>
<h2>Organizing Chair</h2>
<h5>Bijoy A Jose</h5>
<h5>Cochin University of Science and Technology</h5>
<h2>Organizing Co-Chair</h2>
<h5>Jereesh A. S</h5>
<h5>Cochin University of Science and Technology</h5>
<h2>Finance Chair</h2>
<h5>Shailesh S</h5>
<h5>Cochin University of Science and Technology</h5>
<h2>Publicity Chair</h2>
<h5>Jeena Kleenankandy</h5>
<h5>Cochin University of Science and Technology</h5>
</div>
<div class="col-12 col-lg-6 chairs" id="pc-list">
<h2>Program Committee</h2>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Brand Area End-->
<!--? Blog Area Start -->
<section class="home-blog-area section-padding30" id="venue">
<div class="container">
<!-- Section Tittle -->
<div class="row justify-content-center">
<div class="col-lg-5 col-md-8">
<div class="section-tittle text-center mb-50">
<h2>Venue</h2>
</div>
</div>
</div>
<div class="row" id="about-venue">
<style>
#about-venue ul{
padding-left: 20px !important;
}
</style>
<div class="col-12">
<h2 class="mb-4 font-weight-bold">Cochin University of Science and Technology</h2>
<div class="col-12 col-lg-9 pr-0 pl-0 pt-3 pb-3">
<img src="assets/img/background/cusat-ps.jpg" class="img-fluid rounded" alt="">
</div>
<p>
Cochin University of Science and Technology (CUSAT) is a premier University in
India offering quality education and research. Founded in 1971, CUSAT is a
government owned autonomous university located in Kochi (Cochin), Kerala,
India. CUSAT has at present 29 Departments of study and research offering
Graduate, Post Graduate and Doctoral programmes across a wide spectrum of
disciplines in frontier areas of engineering, science, technology, humanities, law &
management. Centres in specialized thematic areas have been established by the
University, to encourage and promote collaborative, multi-disciplinary
interaction.
</p>
<h2 class="mt-4 mb-4 font-weight-bold">How to reach the venue</h2>
<p>
Department of Computer Science, situated on the main campus of Cochin
University of Science and Technology is 1 km away from South Kalamassery.
South Kalamassery is located on NH 544 in between Ernakulam and Aluva.
</p>
<h3 class="mt-4 mb-4">Nearest Airport</h3>
<ul>
<li>Cochin International Airport: 19 km</li>
</ul>
<h3 class="mt-4 mb-4">Nearest Railway Stations</h3>
<ol>
<li>Aluva: 9 km</li>
<li>Ernakulam Town: 9 km</li>
<li>Ernakulam Junction: 13 km</li>
</ol>
<h3 class="mt-4 mb-4">Nearest Metro Station</h3>
<ul>
<li>Cochin University Metro station: 1km</li>
</ul>
<h3 class="mt-4 mb-4">Nearest Bus Stand</h3>
<ul>
<li>Cochin University/South Kalamasssery Bus stop: 1km</li>
</ul>
<h3 class="mt-4 mb-4">Nearest Auto Stand</h3>
<ul>
<li>South Kalamssery: 1 km</li>
</ul>
<style>
#hotels-nearby a{
color: black;
}
</style>
<h2 class="mt-5 mb-4 font-weight-bold">Accomodation</h2>
<h3 class="mt-4 mb-4">Nearest Hotels</h3>
<ul id="hotels-nearby"></ul>
<h2 class="mt-5 mb-4 font-weight-bold">Nearby Tourist Spots</h2>
</div>
</div>
<div class="row">
<div class="col-sm-12 d-md-flex" style="flex-wrap: wrap;" id="tourism">
<style>
.card{
width: 100% !important;
}
@media (max-width:500px){
.card{
width: 18rem !important;
}
}
</style>
<!-- <div class="col-sm-12 col-lg-6 col-xxl-6">
<div class="card">
<img class="card-img-top img-fluid" src="assets/img/tourism/Athirappally.jpg" alt="Card image cap">
<div class="card-body">
<p class="card-text">Athirappally Waterfalls</p>
</div>
</div>
</div> -->
</div>
</div>
</div>
</section>
<section class="mb-4 section-padding30 pt-0" id="contact-details">
<div class="container" >
<div class="row justify-content-center">
<div class="col-12">
<div class="section-tittle text-center mb-50">
<h2>Contact Us</h2>
</div>
</div>
</div>
<div class="row">
<style>
#contact-details a{
color: #10285d !important;
}
</style>
<div class="col-12 mt-4 mb-4">
<h5>For queries please write to <strong><a href="mailto:icaise@cusat.ac.in">icaise@cusat.ac.in
</a></strong></h5>
</div>
<div class="col-12 col-md-6">
<h5 style="color:#10285d;">Dr. Bijoy A. Jose (Organizing Chair- ICAISE 2023)</h5>
<p>
Associate Professor <br>
Department of Computer Science <br>
Cochin University of Science and Technology, Kochi <br>
E-Mail:<a href="mailto:bijoyjose@cusat.ac.in">bijoyjose@cusat.ac.in</a> <br>
Mob : <a href="tel:+91-9900634422">+91-9900634422</a><br>
</p>
</div>
<div class="col-12 col-md-6">
<h5 style="color:#10285d;">Dr. Jereesh A. S (Organizing Co Chair- ICAISE 2023)</h5>
<p>
Assistant Professor <br>
Department of Computer Science <br>
Cochin University of Science and Technology, Kochi <br>
E-Mail:<a href="mailto:jereesh@cusat.ac.in">jereesh@cusat.ac.in</a> <br>
Mob : <a href="tel:+91-9605900956">+91-9605900956</a><br>
</p>
</div>
</div>
</div>
</section>
</main>
<footer>
<!-- Footer Start-->
<div class="footer-area footer-padding">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="col-xl-3 col-lg-3 col-md-4 col-sm-6">
<div class="single-footer-caption mb-50">
<div class="single-footer-caption mb-30">
<div class="footer-tittle d-flex justify-content-center">
<h4><a href="#about">About</a> </h4>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-4 col-sm-5">
<div class="single-footer-caption mb-50">
<div class="footer-tittle d-flex justify-content-center">
<h4><a href="#tracks">Call for Papers</a></h4>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-4 col-sm-5">
<div class="single-footer-caption mb-50">
<div class="footer-tittle d-flex justify-content-center">
<h4><a href="#dates">Important Dates</a></h4>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-5">
<div class="single-footer-caption mb-50">
<div class="footer-tittle d-flex justify-content-center">
<h4><a href="#contact-details">Contact</a></h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- footer-bottom area -->
<div class="footer-bottom-area footer-bg">
<div class="container">
<div class="footer-border">
<div class="row d-flex justify-content-center align-items-center">
<div class="col-12">
<div class="footer-copy-right d-flex justify-content-center">
<p>
<strong>ICAISE 2023</strong> | Copyright ©2022-23 All Rights Reserved</a>
<br>
</p>
</div>
</div>
<div class="col-12">
<div class="footer-copy-right d-flex justify-content-center">
<p>
<a href="" class="btn text-white"> Website View: <span id="view-count"></span></a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer End-->
</footer>
<!-- Scroll Up -->
<div id="back-top" >
<a title="Go to Top" href="#"> <i class="fas fa-level-up-alt"></i></a>
</div>
<!-- JS here -->
<script src="./assets/js/vendor/modernizr-3.5.0.min.js"></script>
<!-- Jquery, Popper, Bootstrap -->
<script src="./assets/js/vendor/jquery-1.12.4.min.js"></script>
<script src="./assets/js/popper.min.js"></script>
<script src="./assets/js/bootstrap.min.js"></script>
<!-- Jquery Mobile Menu -->
<script src="./assets/js/jquery.slicknav.min.js"></script>
<!-- Jquery Slick , Owl-Carousel Plugins -->
<script src="./assets/js/owl.carousel.min.js"></script>
<script src="./assets/js/slick.min.js"></script>
<!-- One Page, Animated-HeadLin -->
<script src="./assets/js/wow.min.js"></script>
<script src="./assets/js/animated.headline.js"></script>
<script src="./assets/js/jquery.magnific-popup.js"></script>
<!-- Date Picker -->
<script src="./assets/js/gijgo.min.js"></script>
<!-- Nice-select, sticky -->
<script src="./assets/js/jquery.nice-select.min.js"></script>
<script src="./assets/js/jquery.sticky.js"></script>
<!-- counter , waypoint -->
<script src="./assets/js/jquery.counterup.min.js"></script>
<script src="./assets/js/waypoints.min.js"></script>
<script src="./assets/js/jquery.countdown.min.js"></script>
<!-- contact js -->
<script src="./assets/js/contact.js"></script>
<script src="./assets/js/jquery.form.js"></script>
<script src="./assets/js/jquery.validate.min.js"></script>
<script src="./assets/js/mail-script.js"></script>
<script src="./assets/js/jquery.ajaxchimp.min.js"></script>
<!-- Jquery Plugins, main Jquery -->
<script src="./assets/js/plugins.js"></script>
<script src="./assets/js/main.js"></script>
</body>
</html>