-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
3726 lines (2878 loc) · 177 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
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>
<meta charset="utf-8" />
<title>RAICS</title>
<!-- Stylesheets -->
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<link href="css/responsive.css" rel="stylesheet" />
<!--Color Switcher Mockup-->
<link href="css/color-switcher-design.css" rel="stylesheet" />
<link rel="shortcut icon" href="images/apple-touch-icon.png" type="image/x-icon" />
<link rel="icon" href="images/apple-touch-icon.png" type="image/x-icon" />
<!-- Responsive -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<!-- SEO -->
<meta name="description" content="IEEE RAICS : Recent Advances in Intelligent Computational
Systems 2024 is the annual flagship conference of IEEE Kerala Section" />
<meta name="keywords" content="ieee, raics, ieee kerala section, mace, conference" />
<!--[if lt IE 9]><script src="js/respond.js"></script><![endif]-->
</head>
<body>
<div class="page-wrapper">
<!-- Preloader -->
<div class="preloader"></div>
<!-- Header span -->
<!-- Main Header-->
<header class="main-header">
<div class="main-box">
<div class="logo-header">
<div>
<img src="images/TopLogos/IEEE_Kerala.png" alt="" />
</div>
<div>
<img src="images/TopLogos/macelogo.png" alt="" />
</div>
<h2 class="heading--">
<span style="text-wrap: nowrap">
MAR ATHANASIUS COLLEGE OF ENGINEERING</span>
<br />
<span style="font-size: smaller">KOTHAMANGALAM, KERALA, INDIA</span>
</h2>
<div>
<img src="images/TopLogos/60 yrs MACE.png" alt="" />
</div>
<div>
<img src="images/TopLogos/ieee.webp" alt="" />
</div>
</div>
<div class="auto-container clearfix">
<!-- <div class="logo-box">
<div class="logo">
<a href="index.html" class="mobile"
><h2
style="
color: #fff;
font-weight: 700;
text-align: center;
"
>
RAICS
</h2></a
>
<a href="index.html" class="desktop"
><h2 style="color: #fff; font-weight: 700;font-size: 1.25rem;">
6th International Conference on Recent Advances in Intelligent Computational
</h2></a
>
</div>
</div> -->
<!--Nav Box-->
<div class="nav-outer clearfix">
<div class="nav-logo">
<img src="images/TopLogos/raicslogo.png" alt="" />
</div>
<!--Mobile Navigation Toggler-->
<div class="mobile-nav-toggler">
<span class="icon flaticon-menu"></span>
</div>
<!-- Main Menu -->
<nav class="main-menu navbar-expand-md navbar-light">
<div class="navbar-header">
<!-- Togg le Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="icon flaticon-menu-button"></span>
</button>
</div>
<div class="collapse navbar-collapse clearfix" id="navbarSupportedContent">
<ul class="navigation clearfix">
<li><a href="#">Home </a></li>
<li><a href="#about">About Us</a></li>
<li>
<a href="committee.html">Committees</a>
</li>
<li>
<a href="speakers.html">Speakers</a>
</li>
<li>
<a href="#recent" style="text-wrap: nowrap">Recent RAICS</a>
</li>
<li>
<a href="#dates">Dates</a>
</li>
<!-- <li><a href="#theme">Theme</a></li> -->
<li>
<a href="#submission">Paper Submission</a>
</li>
<li>
<a href="#register">Registration</a>
</li>
<li><a href="#accom">Accommodation</a></li>
<li>
<a href="#footer">Contact Us</a>
</li>
<!-- <li class="current dropdown"><a href="index.html">Home</a>
<ul>
<li><a href="index.html">Home </a></li>
<li><a href="index-2.html">About</a></li>
<li><a href="index-3.html">Venue</a></li>
<li><a href="index-4.html">Committee</a></li>
<li><a href="index-5.html">Theme</a></li>
<li class="dropdown"><a href="#">Header Styles</a>
<ul>
<li><a href="index.html">Header Style One</a></li>
<li><a href="index-2.html">Header Style Two</a></li>
<li><a href="index-3.html">Header Style Three</a></li>
<li><a href="index-4.html">Home Page Four</a></li>
<li><a href="index-5.html">Home Page Five</a></li>
</ul>
</li>
</ul>
</li>-->
<!--<li class="dropdown"><a href="about-us.html">About</a>
<ul>
<li><a href="index.html">Home </a></li>
<li><a href="index-2.html">About</a></li>
<li><a href="index-3.html">Venue</a></li>
<li><a href="index-4.html">Committee</a></li>
<li><a href="index-5.html">Theme</a></li>
</ul>
</li>
<li class="dropdown"><a href="speakers.html">Speakers</a>
<ul>
<li><a href="speakers.html">Speakers</a></li>
<li><a href="speakers-detail.html">Speakers Detail</a></li>
</ul>
</li>
<li class="dropdown"><a href="schedule.html">Schedule</a>
<ul>
<li><a href="schedule.html">Schedule</a></li>
<li><a href="event-detail.html">Event Detail</a></li>
<li><a href="buy-ticket.html">Buy Ticket</a></li>
</ul>
</li>
<li class="dropdown"><a href="blog-sidebar.html">Blog</a>
<ul>
<li><a href="blog-sidebar.html">Blog With Sidebar</a></li>
<li><a href="blog-grid.html">Blog Grid</a></li>
<li><a href="blog-single.html">Blog Single</a></li>
<li><a href="error-page.html">404 Error</a></li>
</ul>
</li>
<li><a href="contact.html">Contact</a></li> -->
</ul>
</div>
</nav>
<!-- Main Menu End-->
<!-- Outer box
<div class="outer-box">-->
<!--Search Box
<div class="search-box-outer">
<div class="search-box-btn"><span class="flaticon-search"></span></div>
</div>-->
<!-- Button Box
<div class="btn-box">
<a href="buy-ticket.html" class="theme-btn btn-style-one"><span class="btn-title">Get Tickets</span></a>
</div>
</div>-->
</div>
</div>
</div>
<!-- Mobile Menu -->
<div class="mobile-menu">
<div class="menu-backdrop"></div>
<div class="close-btn">
<span class="icon flaticon-cancel-1"></span>
</div>
<!--Here Menu Will Come Automatically Via Javascript / Same Menu as in Header-->
<nav class="menu-box">
<div class="nav-logo">
<a href="index.html">
<h2 style="color: #000; font-weight: 700">
RAICS
</h2>
</a>
</div>
<ul class="navigation clearfix">
<!--Keep This Empty / Menu will come through Javascript-->
</ul>
</nav>
</div>
<!-- End Mobile Menu -->
</header>
<!--End Main Header -->
<!-- Banner Section -->
<section class="banner-section">
<div class="banner-carousel owl-carousel owl-theme">
<!-- Slide Item -->
<div class="slide-item" style="background-image: url(images/Banner/2.jpg)">
<div class="auto-container">
<div class="content-box">
<!--<span class="title">January 20, 2023</span>-->
<h2>IEEE RAICS 2024</h2>
<span class="title" style="line-height: 2.2ch">
6th International Conference on,<br />Recent
Advances in Intelligent Computational
Systems
</span>
<span class="title" style="color: white">16 - 18 May 2024</span>
<!--<ul class="info-list">
<li><span class="icon fa fa-chair"></span> 5000 Seats</li>
<li><span class="icon fa fa-user-alt"></span> 12 SPEAKERS</li>
<li><span class="icon fa fa-map-marker-alt"></span> Palo, California</li>
</ul>-->
<!-- <div class="btn-box">
<a
href="#register"
class="theme-btn btn-style-two"
><span class="btn-title"
>Register Now</span
></a
>
</div> -->
</div>
</div>
</div>
<!-- Slide Item -->
<div class="slide-item" style="
background-image: url(images/Banner/college.webp);
">
<div class="auto-container">
<div class="content-box right-bottom">
<!--<span class="title">January 20, 2023</span>-->
<span class="title" style="margin: 0">
Jointly organized by
</span>
<h2 style="">
IEEE Kerala Section and Mar Athanasius College of Engineering, Kothamangalam
</h2>
<!-- <span class="title" style="margin: 0;"">
CO-Sponsored By
</span>
<h2>IEEE Kerala</h2> -->
<!--<ul class="info-list">
<li><span class="icon fa fa-chair"></span> 5000 Seats</li>
<li><span class="icon fa fa-user-alt"></span> 12 SPEAKERS</li>
<li><span class="icon fa fa-map-marker-alt"></span> Palo, California</li>
</ul>-->
<!-- <div class="btn-box">
<a
href="#register"
class="theme-btn btn-style-two"
><span class="btn-title"
>Register Now</span
></a
>
</div> -->
</div>
</div>
</div>
<div class="slide-item" style="
background-image: url(images/Banner/ieeeKerala.webp);
">
<div class="auto-container">
<div class="content-box left-bottom">
<!--<span class="title">January 20, 2023</span>-->
<span class="title" style="margin: 0">
Flagship conference of
</span>
<h2 style="">IEEE Kerala Section</h2>
<!-- <span class="title" style="margin: 0;"">
CO-Sponsored By
</span>
<h2>IEEE Kerala</h2> -->
<!--<ul class="info-list">
<li><span class="icon fa fa-chair"></span> 5000 Seats</li>
<li><span class="icon fa fa-user-alt"></span> 12 SPEAKERS</li>
<li><span class="icon fa fa-map-marker-alt"></span> Palo, California</li>
</ul>-->
<!-- <div class="btn-box">
<a
href="#register"
class="theme-btn btn-style-two"
><span class="btn-title"
>Register Now</span
></a
>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!--End Banner Section -->
<!-- Coming Soon
<section class="coming-soon-section">
<div class="auto-container">
<div class="outer-box">
<div class="time-counter"><div class="time-countdown clearfix" data-countdown="12/31/2023"></div></div>
</div>
</div>
</section>-->
<!-- End Coming Soon -->
<!-- About Section -->
<div class="presentation__sch">
<a href="images/PresentationSchedule.pdf" target="_blank"><button>Presentation Schedule</button></a>
<a href="images/Program Schedule.pdf" target="_blank"><button>Program Schedule</button></a>
<a href="https://ieeexplore.ieee.org/xpl/conhome/10689713/proceeding"
target="_blank"><button>Publication</button></a>
<a href="#photoGallery"><button>Photo Gallery</button></a>
</div>
<section id="about" class="about-section">
<div class="anim-icons full-width">
<!-- <span class="icon icon-circle-blue wow fadeIn"></span>
<span class="icon icon-dots wow fadeInleft"></span>
<span class="icon icon-circle-1 wow zoomIn"></span> -->
</div>
<!-- <div class="scrolling-text-container">
<div class="scrolling-text-inner" style="--marquee-speed: 17s; --direction:scroll-right" role="marquee">
<div class="scrolling-text">
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
</div>
<div class="scrolling-text">
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
</div>
<div class="scrolling-text">
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
</div>
<div class="scrolling-text">
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
<div class="scrolling-text-item"><a href="./images/Presentation Schedule.pdf" target="_blank"
rel="noopener noreferrer">Presentation Guidelines</a>
</div>
</div>
</div>
</div> -->
<div class="auto-container">
<div class="row">
<div class="content-column col-lg-12 col-md-12 col-sm-12">
<div class="inner-column">
<div class="sec-title">
<h2>Inauguration</h2>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="image-container">
<img src="images/ajithkumar.jpg" alt="Image">
</div>
<div class="content-container">
<h2><b>"Application of ICT technologies for complex defence systems"</b><br></br>
<b>Speaker:</b> Dr K Ajith Kumar, Director, NPOL, Min. of Defence, Govt. of India.
</h2>
</div>
</div>
</section>
<div class="auto-container">
<div class="row">
<div class="content-column col-lg-12 col-md-12 col-sm-12">
<div class="inner-column">
<div class="sec-title">
<div class="text">
Present day defence systems require autonomous and intelligent capabilities for
successful completion of missions.
Technologies like AI, ML, Deep learning and data analytics are being explored in sensors
and weapon systems for tactical advantage.
Deterrence through surveillance is being employed successfully by our services through
indigenously developed sensor systems.
A quick overview of some of the developments in defence research is presented here.
<br><br />
<!-- <b>ATIF IQBAL</b> (Fellow IEEE (USA), Fellow IET (UK), Fellow IE (India)) received
the B.Sc. and M.Sc. degrees in Electrical Engineering from the Aligarh Muslim
University (AMU), Aligarh, India, in 1991 and 1996, respectively, and Ph.D. degree
from Liverpool John Moores University, Liverpool, U.K., in 2006.
He received D.Sc. degree (Habilitation) in control, informatics, and electrical
engineering from the Gdansk University of Technology, Gdansk, Poland in 2019.
He is a Full Professor with the Department of Electrical Engineering, Qatar
University, Doha, Qatar, and a former Full Professor of the Department of Electrical
Engineering, AMU, Aligarh, India.
Dr. Iqbal has been listed in top 2% highly cited scientists of the world (Stanford
University, USA) since 2019. He has published widely in international journals and
conferences on his research findings related to power electronics, variable speed
drives, e-mobility, smart grid, complex energy transition, micro and nano grids and
renewable energy sources.
He has authored or coauthored more than 570 research articles, 8 patents, and four
books and several chapters in edited books. He has supervised several large research
and development projects worth several million USD.
He has supervised 21 PhD He was also a recipient of the Outstanding Faculty Merit
Award for year 2014–2015 and the Research Excellence Awards at Qatar University, in
2015, and 2022. He has received Research Excellence Award from the College of
Engineering, Qatar University in 2019.
He has received several best research papers awards in top International
Conferences.
He is serving as the Vice-Chair of the IEEE Qatar Section. He is an Associate Editor
of the IEEE Transaction on Industrial Electronics and Senior Editor IEEE Access. -->
</div>
<!-- <div class="home_index_wrapper" style="display: flex; gap: 0.5rem">
<a href="https://scholar.google.com/citations?user=c1OAqn0AAAAJ&hl=en"
style="font-size: large" target="_blank">⇠
Googlescholar ⇢</a><br />
<a href="https://www.linkedin.com/in/atif-iqbal-3a2a15110/" style="font-size: large"
target="_blank" loading="lazy">⇠ LinkedIn ⇢</a><br />
</div> -->
</div>
</div>
</div>
</div>
</div>
<div class="auto-container">
<div class="row">
<!-- Content Column -->
<div class="content-column col-lg-12 col-md-12 col-sm-12">
<div class="inner-column">
<div class="sec-title">
<!-- <span class="title">About Us</span> -->
<h2>About RAICS</h2>
<div class="text">
The International Conference on Recent
Advances in Intelligent Computational
Systems (RAICS) will be held in
Kothamangalam, Kerala, India from May 16
to May 18, 2024. The theme of RAICS 2024 is
Intelligent Computational Systems for
Humanity. The conference is open to
researchers, practitioners, and industry
professionals from all over the world.
RAICS will focus on the
interdisciplinary nature of intelligent
computational systems, encouraging
participants to present their research
contributions and pioneering concepts
that transcend traditional boundaries
within the realms of Electrical,
Electronics, Computer, and Information
sciences. It aims to attract
participants of international repute,
thereby fostering trans-cultural
collaboration and knowledge exchange on
a global scale. The conference will
feature keynote addresses by leading
researchers in the field, as well as
paper presentations, workshops, and
tutorials. It is also poised to serve as a
catalyst for fostering robust
collaborations between industry
stakeholders, academic institutions, and
research communities. The conference
will provide opportunities for
networking and discussion between
participants from different sectors,
with the goal of accelerating the
development and deployment of
intelligent computational systems.
</div>
<div class="home__index__wrapper" style="display: flex; gap: 0.5rem">
<a href="./images/Link/Poster.png" style="font-size: large" target="_blank">⇠
Enotice ⇢</a><br />
<a href="./images/RAICS Brochure.pdf" style="font-size: large" target="_blank"
loading="lazy">⇠ Brochure ⇢</a><br />
</div>
<h2>About MACE</h2>
<div class="text">
Mar Athanasius College of Engineering
pioneered engineering education in
central Kerala with a history of
excellence and innovation since 1961.
Managed by the Mar Athanasius College
Association, aided by the Government of
Kerala, the college was one of the
earliest and the topmost engineering
colleges in Kerala. MACE, as it is
popularly known, was the first
engineering college in Asia under
Christian management. The college offers
undergraduate, postgraduate and doctoral
programs in various branches of
engineering and computer applications,
affiliated to KTU and approved by AICTE.
The NBA accredited full-fledged
departments, namely Mechanical
Engineering, Civil Engineering,
Electrical and Electronics Engineering,
Electronics and Communication
Engineering, Computer Science and
Engineering, and Computer Applications,
apart from the two auxiliary departments
of Mathematics and Science and
Humanities has been consistently ranked
among the top engineering colleges in
Kerala and India by various agencies and
surveys. The college is the first in
Kerala to be accredited by the NAAC with
an A+ grade. The college has a very
active IEEE Student Branch which is
currently the largest in the Kerala
Section. MACE has the vision to be a
center of excellence in engineering
education and research that fosters
innovation, entrepreneurship,
leadership, and social responsibility.
MACE has a mission to provide a quality
education that meets the needs and
expectations of the stakeholders; to
create an environment that promotes
research, development, consultancy, and
extension activities; to nurture
creativity, critical thinking,
problem-solving skills, and ethical
values among students; to collaborate
with industry, acadgemia, government,
and society for mutual benefit; and to
contribute to the advancement of
technology and the welfare of humanity.
</div>
<iframe width="100%" height="500"
src="https://www.youtube.com/embed/jDaWHL3jtIQ?si=Z2RVuJ9lRcgB9ISX"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe><br />
<h2>About IEEE Kerala Section</h2>
<div class="text">
IEEE Kerala Section is a vibrant and
dynamic community of engineers,
professionals, and students who are
passionate about Advancing Technology
for the benefit of Humanity. Established
in 1983, IEEE Kerala Section is among the
largest IEEE Sections in the world with
over 16,000 members across various
domains and disciplines. IEEE Kerala
Section offers its members numerous
opportunities for networking, learning,
volunteering, and collaborating on
various projects and initiatives. IEEE
Kerala Section also organises and
supports various events, workshops,
conferences, and contests to keep its
members updated with the latest trends
and developments in technology and the
industry. IEEE Kerala Section has two
Subsections, 17 technical Society
Chapters, one Technical Council Chapter,
four Affinity Group Chapters, nearly 100
active Student Branches, 250+ Student
Branch Chapters, 60 + Affinity Group
Chapters and SIGHT Community groups.
IEEE Kerala Section is committed to
fulfilling the vision and mission of
IEEE by serving the society and the
profession with excellence and
integrity. To learn more about IEEE
Kerala Section, please visit
<a href="https://ieeekerala.org" target="_blank" rel="noopener noreferrer">
https://ieeekerala.org
</a>
</div>
<h2>About Kothamangalam</h2>
<div class="text">
Nestled in the pristine landscapes of
Kerala, India, Kothamangalam is a town
where nature and culture harmoniously
coexist. As you explore this enchanting
destination, you'll find a treasure
trove of experiences catering to diverse
interests. Nature enthusiasts will be
captivated by the Thattekad Bird
Sanctuary's 500+ bird species and the
serene beauty of Bhoothathankettu, a
picturesque dam site. Kothamangalam also
boasts architectural gems like the St.
Thomas Syro-Malabar Catholic Church and
the ornate Kothamangalam Mar Thoma
Cheriapally, steeped in history and
architectural splendour. But the allure
of Kothamangalam extends beyond its
borders. Just 80 kilometres away lies
the breathtaking hill station of Munnar.
Surrounded by rolling hills, tea
plantations, and lush greenery, Munnar
is a paradise for nature lovers. You can
visit tea estates, trek to scenic
viewpoints, and indulge in the region's
renowned tea culture. The Eravikulam
National Park, home to the endangered
Nilgiri Tahr, is another highlight.
Munnar's cool climate and serene
ambience make it a perfect escape from
the city. Back in Kothamangalam, don't
miss the opportunity to savour local
delicacies and the ever-popular banana
chips. Kothamangalam and Munnar together
offer a diverse range of experiences,
making them memorable destinations for
travellers with varied interests.
</div>
<br />
<div class="marquee">
<div class="marquee-content">
<div class="marquee-item">
<img src="./images/Marquee/Kothamangalam/koth1.webp" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kothamangalam/koth2.webp" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kothamangalam/koth3.webp" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kothamangalam/koth4.webp" alt="" draggable="false" />
</div>
<!-- duplicates -->
<div class="marquee-item">
<img src="./images/Marquee/Kothamangalam/koth1.webp" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kothamangalam/koth2.webp" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kothamangalam/koth3.webp" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kothamangalam/koth4.webp" alt="" draggable="false" />
</div>
</div>
</div>
<br />
<h2>About Kochi</h2>
<div class="text">
Kochi, the Queen of the Arabian Sea,
situated on the Kerala coast, is a city that seamlessly weaves
together its rich history and its vibrant
cultural heritage. Kochi's historical narrative is
a reflection of its past as a bustling
port city, which has influenced its
cuisine over centuries. The arrival of
traders and colonists brought a fusion
of flavours, making Kochi a culinary
melting pot. The city is renowned for
its spice trade history, and these
aromatic spices play a starring role in
its cuisine. Exploring Kochi's culinary scene is a gastronomic adventure in
itself. It is a delightful adventure encompassing a seafood extravaganza
featuring fish curries and Kerala fish fry, the iconic Appam and Stew breakfast,
local delicacies like Karimeen Pollichathu, and the sensory explosion of
flavours in the traditional Kerala Sadya feast. The liberal use of spices
infuses dishes with aromatic richness, as seen in Biryanis, Curries, and
Stir-fries, while the bustling streets of Kochi offer authentic street food
experiences with snacks like Banana chips and Samosas. Pairing meals with toddy,
a locally brewed palm wine, enhances the culinary journey, and concluding with
sweet treats like Kerala halwa and Payasam adds the perfect finishing touch to
this gastronomic exploration. Explore Fort Kochi's
colonial charm, visit the Dutch Palace
and Paradesi Synagogue, and savour
Kathakali performances. Stroll along
Marine Drive, discover royal heritage at
the Hill Palace Museum, and shop at Jew
Town. Cherai Beach offers relaxation,
while houseboat cruises unveil Kerala's
backwaters. Kochi, a captivating blend
of past and present, promises a
multifaceted travel experience.
</div>
<br />
<div class="marquee">
<div class="marquee-content">
<div class="marquee-item">
<img src="./images/Marquee/Kochi/koc1.jpg" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kochi/koc2.jpg" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kochi/koc3.jpg" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kochi/koc4.jpg" alt="" draggable="false" />
</div>
<!-- duplicates -->
<div class="marquee-item">
<img src="./images/Marquee/Kochi/koc1.jpg" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kochi/koc2.jpg" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kochi/koc3.jpg" alt="" draggable="false" />
</div>
<div class="marquee-item">
<img src="./images/Marquee/Kochi/koc4.jpg" alt="" draggable="false" />
</div>
</div>
</div>
</div>
<!--<ul class="list-style-one">
<li>Multiple Announcements during the event.</li>
<li>Logo & company details on the WordCamp.</li>
<li>Dedicated blog post thanking each Gold.</li>
<li>Acknowledgment and opening and closing.</li>
</ul>
<div class="btn-box"><a href="contact.html" class="theme-btn btn-style-three"><span class="btn-title">Register Now</span></a></div>-->
</div>
</div>
<!-- Image Column
<div class="image-column col-lg-6 col-md-12 col-sm-12">
<div class="image-box">
<figure class="image wow fadeIn"><img src="images/about-img-1.jpg" alt></figure>
</div>
</div>-->
</div>
</div>
</section>
<!--End About Section -->
<!-- About Section -->
<!--End About Section -->
<!-- Speakers Section -->
<!--
<section class="speakers-section" id="speakers">
<div class="auto-container">
<div class="sec-title light text-center">
<span class="title">Speakers</span>
<h2>Coming Soon....</h2>
</div>
<div class="row">
<div class="speaker-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box">
<div class="image-box">
<figure class="image">
<a href="speakers-detail.html"
><img
src="images/speaker-1.jpg"
alt
/></a>
</figure>
</div>
<div class="info-box">
<div class="inner">
<h4 class="name">
<a href="speakers-detail.html"
>Dale Marke</a
>
</h4>
<span class="designation"
>Event Manager</span
>
<ul
class="social-links social-icon-colored"
>
<li>
<a href="#"
><i
class="fab fa-facebook-f"
></i
></a>
</li>
<li>
<a href="#"
><i
class="fab fa-twitter"
></i
></a>
</li>
<li>
<a href="#"
><i
class="fab fa-pinterest"
></i
></a>
</li>
<li>
<a href="#"
><i
class="fab fa-dribbble"
></i
></a>
</li>
</ul>
</div>
</div>
</div>