-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
1059 lines (928 loc) · 47.8 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">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>KHM‘24</title>
<meta content="Kochi Hub Meet (KHM) is the annual flagship event of IEEE Kochi Hub, providing a platform for Student
Branches all
across the hub to connect, network, and learn together. Jam-packed with fun, creative, and innovative
activities, KHM
provides a premiere experience for its attendees in growing their technical as well as non-technical
skills." name="description">
<meta content="khm,link,ieee,khm24,ieeelink,ieeesb" name="keywords">
<!-- Favicons -->
<link href="/assets/img/khm24/icon.png" sizes="16x16" rel="icon">
<link href="/assets/img/khm24/icon" sizes="16x16" rel="apple-touch-icon">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="/assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="/assets/vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<link href="/assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="/assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="/assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="/assets/css/main.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script>
$(function () {
$("#footerComp").load("./otherHTML/footer.html");
});
</script>
</head>
<body>
<div id="preloader">
<div class="title">
<div>Together We </div>
<div class="word can">
<span>M</span>
<span>E</span>
<span>E</span>
<span>T</span>
</div>
<div class="word will">
<span>DI</span>
<span>SC</span>
<span>OV</span>
<span>ER</span>
</div>
<div class="word thrive">
<span>G</span>
<span>R</span>
<span>O</span>
<span>W</span>
<!-- <span>V</span>
<span>E</span>
</div>
</div>
<div id="textanime">
<h2 id="text1"></h2>
<h2 id="text2"></h2>
</div>
-->
<!--svg id="filters">
<defs>
<filter id="threshold">
<feColorMatrix in="SourceGraphic" type="matrix" values="1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 255 -140" />
</filter>
</defs>
</svg-->
</div>
</div>
</div>
<!-- <div id="particles-js"></div>-->
<!-- ======= Header ======= -->
<header id="header" class="header d-flex align-items-center fixed-top">
<div class="container-fluid container-xl d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center" data-aos="fade-right" data-aos-delay="2000">
<img src="/assets/img/khm24-logo.png " alt="">
<h1 style="font-family: aventurabold; letter-spacing: 4px"></h1>
</a>
<i data-aos="fade-left" data-aos-delay="2000" class="mobile-nav-toggle mobile-nav-show bi bi-list"></i>
<i class="mobile-nav-toggle mobile-nav-hide d-none bi bi-x"></i>
<nav id="navbar" class="navbar" >
<ul>
<li data-aos="fade-left" data-aos-delay="2000"><a href="index.html" class="active">HOME</a></li>
<li data-aos="fade-left" data-aos-delay="2100"><a href="#about">ABOUT</a></li>
<li data-aos="fade-left" data-aos-delay="2200"><a href="#service">EVENTS</a></li>
<li data-aos="fade-left" data-aos-delay="2300"><a href="#pricing">TICKETS</a></li>
<li data-aos="fade-left" data-aos-delay="2400"><a href="#contact">CONTACT US</a></li>
<!-- <li data-aos="fade-left" data-aos-delay="2500"><a class="get-a-quote cta-btn-small fw-bold text-white"
href="#pricing">REGISTER <i class="bi bi-chevron-right"></i></a></li> -->
</ul>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<div id="large-header" class="large-header">
<section id="hero" class="main-title hero d-flex align-items-center">
<div class="container wavefront">
<div class="waves">
<div class="wave" id="wave1"></div>
<div class="wave" id="wave2"></div>
<div class="wave" id="wave3"></div>
<div class="wave" id="wave4"></div>
</div>
<div id="herocontent" class="row gy-1 d-flex p-1">
<div class="col-12 order-2 order-lg-1 d-flex flex-column justify-content-center">
<!-- style="font-family: aventurabold;" -->
<p data-aos="fade-up" data-aos-delay="2000" style="margin: 30px;"><span style="color: var(--nav-color); "
>Kochi Hub Meet 2024</span></p>
<h2 data-aos="fade-up" data-aos-delay="2100" style="font-weight: bolder; ">IT'S <span style="color: var(--color-primary);">TIME </span>TO <br>
GET TOGETHER</h2>
<p data-aos="fade-up" data-aos-delay="2000" ><span style="color: var(--color-higlight); "
>Adi Shankara institute of Engineering and technology</span></p>
<p data-aos="fade-up" data-aos-delay="2000" ><span style="color: var(--white); "
>October 5th - 6th 2024</span></p>
<!-- <h3 data-aos="fade-up" data-aos-delay="2300"><i class="bi bi-geo-alt-fill"></i> AJCE <i
class="bi bi-calendar"></i></i> NOVEMBER 19</h3> -->
<!-- <h3 data-aos="fade-up" data-aos-delay="200"><i class="bi bi-geo-alt-fill"></i> SJCET PALAI</h3> -->
<!--p data-aos="fade-up" data-aos-delay="100">Facere distinctio molestiae nisi fugit tenetur repellat non praesentium nesciunt optio quis sit odio nemo quisquam. eius quos reiciendis eum vel eum voluptatem eum maiores eaque id optio ullam occaecati odio est possimus vel reprehenderit</p-->
<!-- <span><a class="cta-btn-small" href="#featured-services" data-aos="fade-up"
data-aos-delay="2500">EXPLORE <i class="bi bi-chevron-right"></i></a></span> -->
<!-- <div
class="row col-10 col-md-8 col-lg-6 row-cols-2 row-cols-md-4 mx-auto countdown justify-content-center align-items-center"
data-aos="fade-up" data-aos-delay="2700" data-count="2022/12/10"> -->
<!-- End Stats Item -->
<!-- <div class="col">
<div class="stats-item text-center w-100 h-100">
<span>%d</span>
<p>Days</p>
</div>
</div> -->
<!-- End Stats Item -->
<!-- <div class="col">
<div class="stats-item text-center w-100 h-100">
<span>%h</span>
<p>Hours</p>
</div>
</div> -->
<!-- End Stats Item -->
<!-- <div class="col">
<div class="stats-item text-center w-100 h-100">
<span>%m</span>
<p>Minutes</p>
</div>
</div> -->
<!-- End Stats Item -->
<!-- <div class="col">
<div class="stats-item text-center w-100 h-100">
<span>%s</span>
<p>Seconds</p>
</div>
</div> -->
<!-- </div> -->
</div>
</div>
</div>
</section><!-- End Hero Section -->
</div>
<section id="featured-services" class="featured-services">
<div class="container">
<div class="row gy-4">
<div class="col-lg-4 col-md-6 service-item d-flex" data-aos="fade-up">
<div class="icon flex-shrink-0 bg-transparent"><i class="fa-solid fa-rocket"></i></div>
<div>
<h4 class="title">Technical Session</h4>
<p class="description">𝖤𝗇𝗁𝖺𝗇𝖼𝖾 𝗒𝗈𝗎𝗋 𝗍𝖾𝖼𝗁𝗇𝗂𝖼𝖺𝗅 𝗄𝗇𝗈𝗐𝗅𝖾𝖽𝗀𝖾 𝗍𝗁𝗋ough various
sessions conducted by technical expert.</p>
<a href="#service" class="readmore stretched-link"><span>Learn More</span><i
class="bi bi-chevron-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 service-item d-flex" data-aos="fade-up" data-aos-delay="100">
<div class="icon flex-shrink-0 bg-transparent"><i class="fa-solid fa-cubes"></i></div>
<div>
<h4 class="title">Games</h4>
<p class="description">Prepare to step into the world of games, where you can become the hero, the
strategist, and the master of your own adventures.</p>
<a href="#service" class="readmore stretched-link"><span>Learn More</span><i
class="bi bi-chevron-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 service-item d-flex" data-aos="fade-up" data-aos-delay="200">
<div class="icon flex-shrink-0 bg-transparent"><i class="fa-solid fa-heart-music-camera-bolt"></i></div>
<div>
<h4 class="title">Cultural Events</h4>
<p class="description">Exciting cultural events to showcase your creative vigour and keep the spirit of fun
learning alive.</p>
<a href="#service" class="readmore stretched-link"><span>Learn More</span><i
class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
</div>
</section><!--End Featured Services Section-->
<main id="main">
<!-- ======= About Us Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="section-header pb-1" data-aos="fade-up">
<span>About Us</span>
<h2>About Us</h2>
</div>
<div class="row align-items-center justify-content-center">
<div class="services col-12 col-md-10 col-lg-9">
<div class="gallery-img" data-aos="fade-up" data-aos-delay="100">
<div class="card-img">
<img src="assets/img/khm1.JPG" loading="lazy" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="col-12 content mt-4" data-aos="fade-up" data-aos-delay="250">
<h3>KHM‘24</h3>
<p>
The IEEE Kochi Hub Meet (KHM) is a premier gathering organized by the IEEE Kochi Hub, dedicated to bringing together engineering students from across the region under the IEEE umbrella. This flagship event of IEEE Kochi Hub, renowned for its unique blend of technical innovation and community engagement, is set to host over 150 participants from Kochi Hub and beyond.
<br>
<br>
This year, IEEE KHM 2024 will take place in Kochi on October 5th and 6th, at Adi Shankara Institute of Engineering and Technology (ASIET), Kalady. The event is designed to foster connections between students, industry professionals, and academia, providing a vibrant platform for networking, hands-on learning, and professional growth.
<br><br>
KHM'24 brings a fusion of technology and entertainment, merging the best of both worlds to create an unforgettable experience.
</p>
<!-- <div data-aos="fade-up" data-aos-delay="250"><span><a class="cta-btn-small" href="/about/">Know More <i
class="bi bi-chevron-right"></i></a></span>
</div> -->
</div>
</div>
<br>
<div class="col-12 content " data-aos="fade-up" data-aos-delay="100">
<h3>About Host</h3>
<p>
Adi Shankara Institute of Engineering and Technology (ASIET), nestled in the lush greenery of Kalady, Kerala, provides an inspiring environment for students to excel in engineering and technology. ASIET's serene campus fosters academic excellence while promoting sustainability and innovation.
<br><br>
The IEEE Student Branch of ASIET is powered by a passionate team of volunteers, many of whom have served in leadership roles within the IEEE Kerala Section and India Council. The branch offers students numerous opportunities to engage with cutting-edge technologies through workshops, seminars, and events, helping them develop technical and professional skills. It stands as a hub for innovation, collaboration, and leadership, encouraging active participation in both national and international IEEE initiatives.
</p>
<!-- <span><a class="cta-btn-small" href="about.html" >Know More <i
class="bi bi-chevron-right"></i></a></span> -->
</div>
</div>
</section><!-- End About Us Section -->
<!-- ======= Services Section ======= -->
<section id="service" class="services pt-0">
<div class="container">
<div class="section-header" data-aos="fade-up">
<span>HIGHLIGHTS</span>
<h2>HIGHLIGHTS</h2>
</div>
<div class="row gy-4">
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="card newcards">
<div class="card-img">
<img src="assets/img/khm24/game.JPG" loading="lazy" alt="" class="img-fluid">
</div>
<h3><a href="#service" class="stretched-link">TECH GAMES</a></h3>
<!-- <p>Cumque eos in qui numquam. Aut aspernatur perferendis sed atque quia voluptas quisquam repellendus
temporibus itaqueofficiis odit</p> -->
</div>
</div>
<!-- End Card Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="250">
<div class="card newcards">
<div class="card-img">
<img src="assets/img/khm24/band.JPG" loading="lazy" alt="" class="img-fluid">
</div>
<h3><a href="#service" class="stretched-link">CULTURAL EVENTS</a></h3>
<!-- <p>Illo consequuntur quisquam delectus praesentium modi dignissimos facere vel cum onsequuntur maiores
beatae consequatur magni voluptates</p> -->
</div>
</div>
<!-- End Card Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="400">
<div class="card newcards">
<div class="card-img">
<img src="assets/img/khm24/sessionKHM23.JPG" loading="lazy" alt="" class="img-fluid">
</div>
<h3><a href="#service" class="stretched-link">TECHNICAL SESSION</a></h3>
<!-- <p>Quas assumenda non occaecati molestiae. In aut earum sed natus eatae in vero. Ab modi quisquam aut
nostrum unde et qui est non quo nulla</p> -->
</div>
</div>
<!-- End Card Item -->
</div>
</div>
</section>
<!-- ======= Pricing Section ======= -->
<section id="pricing" class="pricing pt-0">
<div class="container">
<div class="section-header" data-aos="fade-up">
<span>Tickets</span>
<h2>Tickets</h2>
</div>
<div class="row justify-content-center align-items-center gy-4">
<div class="col-lg-4" data-aos="fade-right" data-aos-delay="400">
<div class="pricing-item">
<h3>IEEE MEMBERS</h3>
<h4> <sup>₹1000</sup> </h4>
<ul>
<!-- <li><i class="bi bi-check"></i> Early Bird Benefits</li> -->
<li><i class="bi bi-check"></i> Sessions and Talks</li>
<li><i class="bi bi-check"></i> Goodies</li>
<li><i class="bi bi-check"></i> Food</li>
<li><i class="bi bi-check"></i> Networking Opportunity</li>
<li><i class="bi bi-check"></i> Culturals</li>
<li><i class="bi bi-check"></i> IEEE Membership Benefits</li>
</ul>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSd0dLvDpSjXWoF3qDqxVnOpidV07t7_HSiwEPUVZlb21_bA8g/viewform?usp=sharing" class="cta-btnn-small">Register <i class="bi bi-chevron-right"></i></a>
</div>
</div>
<!-- End Pricing Item -->
<div class="col-lg-4" data-aos="fade-left" data-aos-delay="400">
<div class="pricing-item featured">
<h3>NON IEEE MEMBERS</h3>
<h4> <sup>₹1500</sup></h4>
<ul>
<!-- <li><i class="bi bi-check"></i> Early Bird Benefits</li> -->
<li><i class="bi bi-check"></i> Sessions and Talks</li>
<li><i class="bi bi-check"></i> Goodies</li>
<li><i class="bi bi-check"></i> Food</li>
<li><i class="bi bi-check"></i> Networking Opportunity</li>
<li><i class="bi bi-check"></i> Culturals</li>
<li class="na"><i class="bi bi-x"></i> <span>IEEE Membership Benefits</span></li>
</ul>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSd0dLvDpSjXWoF3qDqxVnOpidV07t7_HSiwEPUVZlb21_bA8g/viewform?usp=sharing" class="cta-btnn-small">Register <i class="bi bi-chevron-right"></i></a>
</div>
</div>
<!-- End Pricing Item -->
</div>
</div>
</section>
<!-- End Pricing Section -->
<!-- <section id="schedule" class="pt-0">
<div class="section-header" data-aos="fade-up">
<span>Event Schedule</span>
<h2>Event Schedule</h2>
</div>
<div class="accordion container p-2 d-flex gap-0 gap-md-2 flex-column justify-content-start flex-md-row" id="schedule">
<div data-aos="fade-up" data-aos-delay="100" class="accordion-item w-100 p-0 mb-2 bg-transparent border-0">
<h2 class="accordion-header schedule-buttons" id="headingOne">
<button class="btn text-white collapsed p-3" type="button" data-bs-toggle="collapse" data-bs-target="#day1"
aria-expanded="false" aria-controls="day1">
EVENT DAY<br><span class="text-white-50 fs-6">19/11/2023</span>
</button>
</h2>
<div id="day1" class="accordion-collapse collapse" aria-labelledby="headingOne">
<div class="accordion-body timeline">
<div class="wrapper"> -->
<!-- <h1> A day in my 'sleepy' life 😅</h1> -->
<!-- <ul class="sessions">
<li>
<div class="time">8:00 AM </div>
<p>Registration</p>
</li>
<li>
<div class="time">9:00 AM </div>
<p>Inaugural Ceremony</p>
</li>
<li>
<div class="time">10:00 AM </div>
<p>Paths Untravelled : A Tale of Progress" by Mrs. Madhuri DM, Program Director, Data & AI, IBM Software Labs, Kochi</p>
</li>
<li>
<div class="time">11:00 AM </div>
<p>IEEE - Bridging The Gap - Student to Professional</p>
</li>
<li>
<div class="time">12:30 PM </div>
<p>Exploring IEEE: Student Opportunities Unveiled - Q&A" by Prof. Sabarinath G Pillai, Secretary, IEEE India Council</p>
</li>
<li>
<div class="time">01:30 PM - 02:30 PM </div>
<p> Lunch</p>
</li>
<li>
<div class="time">02:30 PM</div>
<p> WAR/Treasure Hunt</p>
</li>
<li>
<div class="time">05:00 PM </div>
<p> Valedictory Ceremony</p>
</li>
<li>
<div class="time">05:30 PM</div>
<p>Culturals</p>
</li> -->
<!--li>
<div class="time">10:30 PM </div>
<p>\The time to sleep</p>
</li-->
<!-- </ul>
</div>
</div>
</div>
</div> -->
<!--<div data-aos="fade-up" data-aos-delay="250" class="accordion-item w-100 p-0 mb-2 bg-transparent border-0">
<h2 class="accordion-header schedule-buttons" id="headingTwo">
<button class="btn text-white collapsed p-3" type="button" data-bs-toggle="collapse" data-bs-target="#day2"
aria-expanded="false" aria-controls="day2">
DAY TWO<br><span class="text-white-50 fs-6">11/12/2022</span>
</button>
</h2>
<div id="day2" class="accordion-collapse collapse" aria-labelledby="headingTwo">
<div class="accordion-body timeline">
<div class="wrapper">
<h1> A day in my 'sleepy' life 😅</h1> -->
<!--<ul class="sessions">
<li>
<div class="time">08:00 AM </div>
<p>Breakfast</p>
</li>
<li>
<div class="time">09:30 AM - 10:30 AM </div>
<p><strong>Invested Interest:</strong> Do’s and Don’ts of Entrepreneurship</p>
<p><strong>Mr. Nitheesh Kurian</strong></p>
</li>
<li>
<div class="time">10:30 AM </div>
<p>Tea Break</p>
</li>
<li>
<div class="time">11:00 AM - 1:00 PM </div>
<p>Parallel Tracks<br>
<ul>
<li>
<p><strong>CyberAware:</strong> Cybersecurity and Personal Security in Cyberspace</p>
<p><strong>Mr. Sabarinath G Pillai</strong></p>
</li>
<p> OR</p>
<li>
<p><strong>.COM:</strong> Intro to Web development</p>
<p><strong>Mr. Neeraj Ipe</strong></p>
</li>
<p> OR</p>
<li>
<p>LinkedIn, Career, Freelancing and Gyaan</p>
<p><strong>Mr. Vishnu S</strong></p>
</li>
</ul>
</p>
</li>
<li>
<div class="time">01:00 PM </div>
<p>Lunch</p>
</li>
<li>
<div class="time">02:00 PM - 03:00 PM </div>
<p><strong>From Student to Founder:</strong> Journey as a woman in STEM</p>
<p><strong>Ms. Sreepriya R</strong></p>
</li>
<li>
<div class="time">03:00 PM - 03:30 PM </div>
<p>Photo Session & Feedback</p>
</li>
<li>
<div class="time">03:30 PM - 04:00PM </div>
<p>Closing Ceremony</p>
</li>
<li>
<div class="time">04:30 PM </div>
<p>Refreshments</p>
</li>
<!-li>
<div class="time">10:00 PM </div>
<p>go home</p>
</li-->
<!--</ul>
</div>
</div>
</div>
</div>-->
</div>
</section>
<!-- ======= Supporter Section ======= -->
<section id="powered" class="about pt-0">
<div class="container text-center">
<div class="section-header" data-aos="fade-up">
<span>Powered by</span>
<h2>Powered by</h2>
</div>
<div class="row row-cols-2 row-cols-sm-3 gap-1 px-2 row-cols-md-6">
<div class="col p-0 flex-grow-1 " data-aos="fade-up" data-aos-delay="600">
<div class="pricing-item poweredby">
<img src="assets/img/logos/IEEE LINK - white.svg" loading="lazy" alt="" sizes="" srcset=""
class="img-fluid ">
</div>
</div>
<div class="col p-0 flex-grow-1 " data-aos="fade-up" data-aos-delay="500">
<div class="pricing-item poweredby">
<img src="assets/img/logos/KOCHI HUB white.png" loading="lazy" alt="" sizes="" srcset=""
class="img-fluid">
</div>
</div>
<div class="col p-0 flex-grow-1" data-aos="fade-up" data-aos-delay="600">
<div class="pricing-item poweredby">
<img src="assets/img/logos/R10_SAC.png" loading="lazy" alt="" sizes="" srcset=""
class="img-fluid ">
</div>
</div>
<div class="col p-0 flex-grow-1 " data-aos="fade-up" data-aos-delay="400">
<div class="pricing-item poweredby">
<img src="assets/img/logos/ieee_asiet.png" loading="lazy" alt="" sizes="" srcset=""
class="img-fluid">
</div>
</div>
<div class="col p-0 flex-grow-1 " data-aos="fade-up" data-aos-delay="300">
<div class="pricing-item poweredby">
<img src="assets/img/logos/IEEE Logo - white.png" loading="lazy" alt="" sizes="" srcset=""
class="img-fluid">
</div>
</div>
</div>
</div>
</section>
<!-- End powered by Section -->
<!-- ======= Speakers Section ======= -->
<!-- <section id="speakers">
<div class="container" data-aos="fade-up">
<div class="section-header" data-aos="fade-up">
<span>speakers</span>
<h2>speakers</h2>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="speakers" data-aos="fade-up" data-aos-delay="100">
<a href="https://www.linkedin.com/in/rony-alex-thomas/" target="_blank"><img
src="/assets/img/speakers/ronythomas.jpg" alt="RONY THOMAS" class="img-fluid"></a>
<div class="details">
<h3><a href="https://www.linkedin.com/in/rony-alex-thomas/" target="_blank">RONY THOMAS</a></h3>
<p>SoC Design Engineer at Intel| IEEE Volunteer<br>Secretary of Industry Relations, IEEE
Kerala Section</p>
<div class="social"> -->
<!-- <p></p> -->
<!-- </div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speakers" data-aos="fade-up" data-aos-delay="200">
<a href="https://www.linkedin.com/in/basilreji/" target="_blank"><img
src="/assets/img/speakers/basilreji.jpg" alt="BASIL REJI" class="img-fluid"></a>
<div class="details">
<h3><a href="https://www.linkedin.com/in/basilreji/" target="_blank">BASIL REJI</a></h3>
<p>Engineer Trainee at QBurst | Graphic Designer<br>Mentor, IEEE LINK</p>
<div class="social"> -->
<!-- <p></p> -->
<!-- </div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speakers" data-aos="fade-up" data-aos-delay="300">
<a href="https://www.linkedin.com/in/thomas-k-gimmy-6aa130185/" target="_blank"><img
src="/assets/img/speakers/thomaskgimmy.jpg" alt="THOMAS K GIMMY" class="img-fluid"></a>
<div class="details">
<h3><a href="https://www.linkedin.com/in/thomas-k-gimmy-6aa130185/" target="_blank">THOMAS K GIMMY</a>
</h3>
<p>Software Developer at IBM<br>Secretary,Public Relations,
IEEE Kerala Section</p>
<div class="social"> -->
<!-- <p></p> -->
<!-- </div>
</div>
</div>
</div> -->
<!-- <div class="col-lg-4 col-md-6">
<div class="speakers" data-aos="fade-up" data-aos-delay="400">
<a href="https://www.linkedin.com/in/govindaraman-s/" target="_blank"><img
src="/assets/img/speakers/govindaramans.jpg" alt="Govindaraman S" class="img-fluid"></a>
<div class="details">
<h3><a href="https://www.linkedin.com/in/govindaraman-s/" target="_blank">Govindaraman S</a></h3>
<p>Frontend Developer at Trizwit Labs <br>
Graphic Designer</p>
<div class="social"> -->
<!-- <p></p> -->
<!-- </div>
</div>
</div>
</div>
</section> -->
<!-- End Workshop Section -->
<!-- ======= EVENT iNTRO Section ======= -->
<!--<section id="evenstintro" class="about pt-0">
<div class="container text-center">
<div class="section-header" data-aos="fade-up">
<span>Events Grid</span>
<h2>Events Grid</h2>
</div>
<div class="eventGrid w-100 d-flex flex-column d-md-grid" data-aos="fade-up" data-aos-delay="200">
<div class="Event1 card">
<div class="card-img">
<img src="/assets/img/event2.jpeg" alt="" srcset="" class="img-fluid ">
</div>
<div class="card-img-overlay rounded-0 d-flex flex-column">
<!-- type something for the events to hover -->
<!--</div>
</div>
<div class="Event2 card ">
<div class="card-img">
<img src="/assets/img/event1.jpeg" alt="" srcset="" class="img-fluid ">
</div>
<div class="card-img-overlay rounded-0 d-flex flex-column">
<!-- type something for the events to hover -->
<!--</div>
</div>
<div class="Event3 card ">
<div class="card-img">
<img src="/assets/img/event3.1.jpeg" alt="" srcset="" class="img-fluid ">
</div>
<div class="card-img-overlay rounded-0 d-flex flex-column">
<!-- type something for the events to hover -->
<!--</div>
</div>
<div class="Event4 card">
<div class="card-img">
<img src="/assets/img/event3.2.jpeg" alt="" srcset="" class="img-fluid ">
</div>
<div class="card-img-overlay rounded-0 d-flex flex-column">
<!-- type something for the events to hover -->
<!--</div>
</div>
<div class="Event5 card">
<div class="card-img">
<img src="/assets/img/event3.3.jpeg" alt="" srcset="" class="img-fluid ">
</div>
<div class="card-img-overlay rounded-0 d-flex flex-column">
<!-- type something for the events to hover -->
<!-- </div>
</div>
</div>
<!--<div data-aos="fade-up" data-aos-delay="300">
<a class="get-a-quote cta-btn-small fw-bold text-white" href="/events/index.html">View More <i
class="bi bi-chevron-right"></i></a></li>
</div>
</div>
</section>
<!-- ======= Testimonials Section ======= -->
<!--section id="testimonials" class="testimonials">
<div class="container">
<div class="slides-1 swiper" data-aos="fade-up">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt="">
<h3>Saul Goodman</h3>
<h4>Ceo & Founder</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i
class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Proin iaculis purus consequat sem cure digni ssim donec porttitora entum suscipit rhoncus. Accusantium
quam, ultricies eget id, aliquam eget nibh et. Maecen aliquam, risus at semper.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt="">
<h3>Sara Wilsson</h3>
<h4>Designer</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i
class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid cillum eram malis
quorum velit fore eram velit sunt <div class="section-header">
<span>Event Schedule</span>
<h2>Event Schedule</h2>
</div>class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Enim nisi quem export duis labore cillum quae magna enim sint quorum nulla quem veniam duis minim
tempor labore quem eram duis noster aute amet eram fore quis sint minim.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="">
<h3>Matt Brandon</h3>
<h4>Freelancer</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i
class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Fugiat enim eram quae cillum dolore dolor amet nulla culpa multos export minim fugiat minim velit
minim dolor enim duis veniam ipsum anim magna sunt elit fore quem dolore labore illum veniam.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="">
<h3>John Larson</h3>
<h4>Entrepreneur</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i
class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Quis quorum aliqua sint quem legam fore sunt eram irure aliqua veniam tempor noster veniam enim culpa
labore duis sunt culpa nulla illum cillum fugiat legam esse veniam culpa fore nisi cillum quid.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section-->
<!--========Gallery======-->
<section>
<div class="container">
<div class="section-header" data-aos="fade-up">
<span>Gallery</span>
<h2>Gallery</h2>
</div>
<div class="row gy-2 gx-2" data-aos="fade-up" data-aos-delay="200">
<div class="col-12 col-md-6 col-lg-4 ">
<img src="/assets/img/khm24/dance.JPG" loading="lazy" class="gallery-img w-100 shadow-1-strong "
alt="Boat on Calm Water" />
</div>
<div class="col-12 col-md-6 col-lg-4 ">
<img src="/assets/img/khm24/random.JPG" loading="lazy" class="gallery-img w-100 shadow-1-strong "
alt="Wintry Mountain Landscape" />
</div>
<div class="col-12 col-md-6 col-lg-4 ">
<img src="/assets/img/khm24/khm23.JPG" loading="lazy" class="gallery-img w-100 shadow-1-strong "
alt="Mountains in the Clouds" />
</div>
<div class="col-12 col-md-6 col-lg-4 ">
<img src="../assets/img/khm2022/khm2022-6.jpg" loading="lazy" class="gallery-img w-100 shadow-1-strong "
alt="Boat on Calm Water" />
</div>
<div class="col-12 col-md-6 col-lg-4 ">
<img src="../assets/img/khm2022/khm2022-8.jpg" loading="lazy" class="gallery-img w-100 shadow-1-strong "
alt="Waves at Sea" />
</div>
<div class="col-12 col-md-6 col-lg-4 ">
<img src="../assets/img/khm2020-10.jpg" loading="lazy" class="gallery-img w-100 shadow-1-strong "
alt="Yosemite National Park" />
</div>
</div>
<!-- <div class="gallery-btn" data-aos="fade-up" data-aos-delay="200">
<a class="get-a-quote cta-btn-small fw-bold text-white" href="/gallery/index.html">View More <i
class="bi bi-chevron-right"></i></a></li>
</div> -->
</div>
</section>
<!-- ======= Frequently Asked Questions Section ======= -->
<section id="faq" class="faq">
<div class="container">
<div class="section-header" data-aos="fade-up">
<span>Frequently Asked Questions</span>
<h2>Frequently Asked Questions</h2>
</div>
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="accordion accordion-flush" id="faqlist">
<div class="accordion-item" data-aos="fade-right" data-aos-delay="200">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-1">
<i class="bi bi-question-circle question-icon"></i>
What is IEEE Kochi Hub Meet (KHM) 2024?
</button>
</h3>
<div id="faq-content-1" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
IEEE Kochi Hub Meet (KHM) 2024 is a flagship event organized by the IEEE Kochi Hub, bringing together engineering students and professionals for collaboration, networking, learning, and cultural activities. It will be held on October 5th and 6th, 2024, at Adi Shankara Institute of Engineering and Technology, Kalady.
</div>
</div>
</div><!-- # Faq item-->
<div class="accordion-item" data-aos="fade-left" data-aos-delay="200">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-2">
<i class="bi bi-question-circle question-icon"></i>
How can I register for KHM'24?
</button>
</h3>
<div id="faq-content-2" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
You can register for IEEE Kochi Hub Meet (KHM) 2024 by visiting the official event website: <a href="https://khm.ieee-link.org/">khm.ieee-link.org</a>
</div>
</div>
</div>
<!-- # Faq item-->
<div class="accordion-item" data-aos="fade-right" data-aos-delay="200">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-3">
<i class="bi bi-question-circle question-icon"></i>
Is accommodation provided for participants?
</button>
</h3>
<div id="faq-content-3" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
Yes, accommodation is provided for all participants attending the IEEE Kochi Hub Meet (KHM) 2024. We aim to ensure a comfortable stay for everyone, further details about the accommodation arrangements will be provided later.
</div>
</div>
</div>
<!-- # Faq item-->
<div class="accordion-item" data-aos="fade-left" data-aos-delay="200">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-4">
<i class="bi bi-question-circle question-icon"></i>
Is Food available for participants during the event?
</button>
</h3>
<div id="faq-content-4" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
Yes, Food will be provided for all participants at KHM 2024 for both days.
</div>
</div>
</div>
<!-- # Faq item-->
<div class="accordion-item" data-aos="fade-right" data-aos-delay="200">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-5">
<i class="bi bi-question-circle question-icon"></i>
Who can I contact for further details?
</button>
</h3>
<div id="faq-content-5" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
You can reach out to the IEEE Kochi Hub or IEEE SB ASIET for any specific queries related to the event. Contact details will be shared on the official event website and communication platforms.
</div>
</div>
</div>
<!-- # Faq item-->
<div class="accordion-item" data-aos="fade-up">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-6">
<i class="bi bi-question-circle question-icon"></i>
How will I receive confirmation of my registration?
</button>
</h3>
<div id="faq-content-6" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
You will receive a confirmation email after registering for KHM 2024, along with an invitation to join a WhatsApp group for event updates. If you don’t see the email within a few days, please contact the organizers.
</div>
</div>
</div>
<!-- # Faq item-->
<!--
</div>
</div>
</div>
</div>
</section> -->
<!-- End Frequently Asked Questions Section -->
<!-- ======= Contact ======= -->
<section id="contact" class="about pt-0">
<div class="container">
<div class="section-header" data-aos="fade-up">
<span>Reach US</span>
<h2>Reach US</h2>
</div>
<div class="row gy-4" data-aos="fade-up" data-aos-delay="200">
<iframe style="border: 0; width: 100%; height: 350px;"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3927.030650279361!2d76.430458!3d10.178164!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b0807bfa8906d61%3A0x11ad08dbd85357dc!2sAdi%20Shankara%20Institute%20of%20Engineering%20and%20Technology%20Kaladi!5e0!3m2!1sen!2sin!4v1726686994099!5m2!1sen!2sin"
frameborder="0" allowfullscreen></iframe>
</div>