-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
1123 lines (1054 loc) · 52.1 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" type="image/x-icon"
href="https://raw.githubusercontent.com/KGEC-Robotics-Society/assets/main/icons/kgec_rs_light_hex_192px.png" />
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css" />
<link rel="stylesheet" href="./Static_Design/css/landing.css" />
<link rel="stylesheet" href="./Static_Design/css/motto.css" />
<link rel="stylesheet" href="./Static_Design/css/domains.css" />
<link rel="stylesheet" href="./Static_Design/css/projects.css" />
<link rel="stylesheet" href="./Static_Design/css/techfest.css" />
<link rel="stylesheet" href="./Static_Design/css/faculty.css" />
<link rel="stylesheet" href="./Static_Design/css/notice-contact.css" />
<link rel="stylesheet" href="./Static_Design/css/footer.css" />
<!-- Sweet alert cdn -->
<script defer src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js"></script>
<title>KGEC-Robotics-Society</title>
</head>
<body class="light-theme" id="body">
<button class="toggle-btn" id="toggle-btn">
<i class="fas fa-moon" id="dark-light"></i>
</button>
<!-- <button class="toggle light" id="light"><i class="far fa-moon"></i></button> -->
<header class="header">
<div class="navbar container">
<div class="logo">
<!-- <span>KGEC-RS</span> -->
<img class="light-logo"
src="https://raw.githubusercontent.com/KGEC-Robotics-Society/assets/main/icons/kgec_rs_light_hex_192px.png"
alt="" />
<img class="dark-logo active"
src="https://raw.githubusercontent.com/KGEC-Robotics-Society/assets/main/icons/kgec_rs_dark_hex_192px.png"
alt="" />
</div>
<nav class="nav" id="nav">
<ul class="navbar-links" id="navbar-links">
<li><a href="#home" onclick="navScroll('home')" class="highlight-btn">Home</a></li>
<li><a href="#domain" onclick="navScroll('domain')">Domains</a></li>
<li><a href="#projects" onclick="navScroll('projects')">Projects</a></li>
<li><a href="#techfest" onclick="navScroll('techfest')">Techfest</a></li>
<li><a href="#member" onclick="navScroll('member')">Faculty</a></li>
<li><a href="https://kgec-robotics-society.github.io/zyro-hackathon/" class="highlight-btn" target="_blank">Hackathon</a></li>
<!-- <li>
<a href="https://kgec-robotics-society.github.io/blogs">Blogs</a>
<a href="blog(new).html">Blogs</a>
</li> -->
</ul>
</nav>
<div class="nav-toggle" id="nav-toggle">
<span class="bar first"></span>
<span class="bar second"></span>
<span class="bar third"></span>
</div>
</div>
</header>
<main>
<!-- EVERY section SHOULD HAVE A min-height of 100vh -->
<!-- /// HOME SECTION /// -->
<section class="hero-section" id="home">
<div class="container hero">
<div class="hero-content">
<h1 class="hero-title">KGEC<br />Robotics Society</h1>
<p class="hero-description">
The place where robots shake hand with humans
</p>
<div class="cta">
<a class="btn cta-btn" href="#about">About us</a>
<a class="btn cta-btn" href="#contact">Contact us</a>
</div>
</div>
<img class="hero-img" src="./Static_Design/assets/landing.png" alt="" />
</div>
</section>
<!-- /// ABOUT SECTION /// -->
<section class="about-section" id="about">
<div class="bg-bubbles">
<span class="bubble one"></span>
<span class="bubble two"></span>
<span class="bubble three"></span>
<span class="bubble four"></span>
</div>
<div class="container about">
<div class="about-content">
<h2 class="about-title">About Us</h2>
<p class="para-one">
"The best way to predict the future is to invent it. "<br>
~ Alan Kay <br>
And what else can best define our future if not robots. Robotics Society, Kgec believes that the future lies
in the world of robotics and we strive forward to spread and act on it.
</p>
<p class="para-two">
We work on domains like :
Mechatronics, Robot Design, Machine Learning, Computer Vision, Electronics and IoT to build basic robotic systems.
We also have a web team, a Content team and a Graphics Team to promote our belief.
</p>
</div>
<div class="about-img">
<span class="back"></span>
<span class="front"></span>
<img src="./Static_Design/assets/BOT-imgs/purple/ideaBOT.png" alt="" />
</div>
</div>
</section>
<!-- /// MOTTO SECTION /// -->
<section class="motto-section" id="motto">
<div class="container container-motto">
<img src="./Static_Design/assets/lines.png" class="lines" />
<div class="motto-description">
<h1 class="motto-title">Our Motto</h1>
<p class="motto-text">Think, Build, Renovate.</p>
</div>
<div class="about-video">
<iframe width="640" height="640" title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen style="
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
"
src="https://www.youtube.com/embed/_0xqFfpLjm4?rel=0?version=3&autoplay=1&controls=0&showinfo=0&loop=1&mute=1&playlist=_0xqFfpLjm4&vq=hd720"></iframe>
</div>
</div>
</section>
<!-- DOMAIN SECTION -->
<section class="domain-section" id="domain">
<h2>Our Domains</h2>
<div class="container container-domain-cards">
<div class="domain-card">
<img class="domain-card-img" src="./Static_Design/assets/domain-imgs/AI,-ML,-CV.png" alt="" />
<h3 class="domain-card-heading">AI, ML and CV</h3>
<p class="domain-card-para">
The ML and OpenCV specialists make sure their models make extremely precise predictions and detect extensive
arenas.
</p>
<span class="domain-card-bar right-bar"></span>
<span class="domain-card-bar left-bar"></span>
</div>
<div class="domain-card">
<img class="domain-card-img" src="./Static_Design/assets/domain-imgs/Content-writing.png" alt="" />
<h3 class="domain-card-heading">Content Writing</h3>
<p class="domain-card-para">
The Content Team is responsible for All documentations and Content required.
</p>
<span class="domain-card-bar right-bar"></span>
<span class="domain-card-bar left-bar"></span>
</div>
<div class="domain-card">
<img class="domain-card-img" src="./Static_Design/assets/domain-imgs/Graphic-design-video-editing.png" alt="" />
<h3 class="domain-card-heading">Graphics Designing and <br> Video Editing</h3>
<p class="domain-card-para">
The posters that we release regularly are the hard work of our Graphics Team.
</p>
<span class="domain-card-bar right-bar"></span>
<span class="domain-card-bar left-bar"></span>
</div>
<div class="domain-card">
<img class="domain-card-img" src="./Static_Design/assets/domain-imgs/Electronics.png" alt="" />
<h3 class="domain-card-heading">Electronics and IoT</h3>
<p class="domain-card-para">
The Electronics and IoT team take care of all the connections and Communications a Robot might need to work
efficiently.
</p>
<span class="domain-card-bar right-bar"></span>
<span class="domain-card-bar left-bar"></span>
</div>
<div class="domain-card">
<img class="domain-card-img" src="./Static_Design/assets/domain-imgs/Mechatronics-,-robot.png" alt="" />
<h3 class="domain-card-heading">Mechatronics and Robot</h3>
<p class="domain-card-para">
The Mechatronics and the Robot Design Team are the ones who nake sure that our robots have been designed
with utmost precision and also thought has been put for further upgradations.
</p>
<span class="domain-card-bar right-bar"></span>
<span class="domain-card-bar left-bar"></span>
</div>
<div class="domain-card">
<img class="domain-card-img" src="./Static_Design/assets/domain-imgs/web-dev.png" alt="" />
<h3 class="domain-card-heading">Web Development and<br> Cloud Computing</h3>
<p class="domain-card-para">
This very website has been put together by our web team and they will keep updating and upgrading it.
</p>
<span class="domain-card-bar right-bar"></span>
<span class="domain-card-bar left-bar"></span>
</div>
</div>
</section>
<!-- PROJECTS SHOWCASE SECTION -->
<section class="project-showcase-section" id="projects">
<h2>Our Projects</h2>
<div class="carousel projects-carousel-container" data-flickity='{ "autoPlay": false }'>
<div class="carousel-cell">
<div class="project-showcase-container container">
<div class="project-showcase-image-container">
<img src="./Static_Design/assets/project-imgs/DEBRIS.png" alt="" />
</div>
<div class="project-showcase-text-container">
<h1 class="project-showcase-title">D.E.B.R.I.S. Cleaning Bot</h1>
<p>
A cleaning bot named DEBRIS, an abbreviation of Dedicated and Enthusiastic Bot with Real Intelligence
System, is a bot which have the ability to pick up small garbage and clean the area covered by it. The
main feature of this bot is its path coverage algorithm known as DARP or Divide Areas based on Robot's
Intial Position. The project is multi-agent system to cover and do the maximum work in the least
possible time. DARP helps our agents(robots) to plan their path and cover the entire area by avoiding
the obstacles and working with a high efficiency with almost 95%.
</p>
<div class="project-showcase-left-side-btn">
<a href="https://github.com/SunirbanRanjit/Path_coverage_ros.git">
<button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<div class="carousel-cell">
<div class="project-showcase-container">
<div class="project-showcase-image-container">
<img src="./Static_Design/assets/project-imgs/Hand Gesture Car.png" alt="" />
</div>
<div class="project-showcase-text-container">
<h1 class="project-showcase-title">Hand Gesture Car</h1>
<p>
The project included a hand and a car which were made using different components including
Arduino nano, L298 𝐦𝐨𝐝𝐮𝐥𝐞, nrf 24101, BO Motor with wheel,
and Fibre Sheet for the car. As for the hand we used Arduino nano, MPU 6050, 7805 voltage
regulator IC with heat sink and screw nut , and nrf 24l01 among others.
</p>
<div class="project-showcase-left-side-btn">
<a href="https://youtu.be/gnkU9sUKClQ">
<button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<div class="carousel-cell">
<div class="project-showcase-container">
<div class="project-showcase-image-container">
<img src="./Static_Design/assets/project-imgs/Home Automation with Sinric pro.png" alt="" />
</div>
<div class="project-showcase-text-container">
<h1 class="project-showcase-title">Home Automation System</h1>
<p>
A pro of using Sinric Pro is that it lets us control all the devices over the internet, without the need
to connect them to a common LAN. We can customize the way we want to control various devices including
switches, smart light bulbs, thermostats, smart televisions, smart locks, smart speakers, contact
sensors, dimmer switches, doorbells, cameras, and so forth. We can also keep checks on the power
estimates of different gadgets controlled using this service. It also enables us to schedule devices the
way we want.
</p>
<div class="project-showcase-left-side-btn">
<a href="https://youtu.be/drS76DULCN8">
<button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<div class="carousel-cell">
<div class="project-showcase-container">
<div class="project-showcase-image-container">
<img src="./Static_Design/assets/project-imgs/FirebaseIoTDashboard.png" alt="" />
</div>
<div class="project-showcase-text-container">
<h1 class="project-showcase-title">Firebase IoT Dashboard</h1>
<p>
The device which had a NodeMCU (ESP8266) as the microcontroller, was programmed in Arduino IDE and used
the libraries WiFiManager.h and FirebaseESP8266.h. A website was hosted on firebase that allowed one to
toggle the LED, adjust its intensity, and also read the data from two sensors that were on that IoT
device. Moreover, all of this was implemented in a very beginner-friendly way
</p>
<div class="project-showcase-left-side-btn">
<a href="https://youtu.be/zCAPVe9uq2o">
<button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<div class="carousel-cell">
<div class="project-showcase-container">
<div class="project-showcase-image-container">
<img src="./Static_Design/assets/project-imgs/MonoKrome GRID.png" alt="" />
</div>
<div class="project-showcase-text-container">
<h1 class="project-showcase-title">Monokrome Grid</h1>
<p>
It is a fully autonomous centrally monitored maze solver project for Flipkart Grid 3.0 (2021). The
project contained four bots equipped with ESP12F microcontroller which interfaced an L298N motor driver
to drive the bots from the commands it received over Wi-Fi through MQTT pub-sub. The central monitoring
system is nothing but a camera attached to a computer which is running an MQTT broker and an Open-CV
based python maze-solver script.
</p>
<div class="project-showcase-left-side-btn">
<a href="https://youtu.be/1O2s126MF6Y">
<button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<div class="carousel-cell">
<div class="project-showcase-container">
<div class="project-showcase-image-container">
<img src="./Static_Design/assets/project-imgs/RASA Chatbot.png" alt="" />
</div>
<div class="project-showcase-text-container">
<h1 class="project-showcase-title">RASA Chatbot</h1>
<p>
Chatbots, the wonderful conversational agents have won the interactivity and engagement when stacked on
top of web or mobile apps. Now, at the heart of chatbot technology lies natural language processing or
NLP, the same technology that forms the basis of the voice recognition systems used by virtual
assistants such as Google Now, Apple’s Siri, and Microsoft’s Cortana. Here, the framework that we have
used to build the bot is Rasa, a popular, incredibly powerful open-source framework for developing
AI-powered chatbots.
</p>
<div class="project-showcase-left-side-btn">
<a href="https://youtu.be/Ot-qDT2ArPY">
<button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<div class="carousel-cell">
<div class="project-showcase-container">
<div class="project-showcase-image-container">
<img src="./Static_Design/assets/project-imgs/LED Cube.png" alt="" />
</div>
<div class="project-showcase-text-container">
<h1 class="project-showcase-title">LED Cube</h1>
<p>
The project was made using different components including Arduino (Nano, Uno, Mega, etc) with cable,
Flexiable Wires/ Jumper wires(M-F),Blank Veroboard, 9x3 leds, Copper wire.
</p>
<div class="project-showcase-left-side-btn">
<a href="https://youtu.be/aw8-ehOGtM8">
<button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<div class="carousel-cell">
<div class="project-showcase-container">
<div class="project-showcase-image-container">
<img src="./Static_Design/assets/project-imgs/Calculator.png" alt="" />
</div>
<div class="project-showcase-text-container">
<h1 class="project-showcase-title">Calculator</h1>
<p>
In this project, we will build our own calculator with Arduino and Keypad, with results that can be
viewed on the LCD screen. This calculator will be able to perform simple operations like Addition,
Subtraction, Multiplication, and Division with whole numbers. So let us, deep-dive, into how we can
engineer our next good calculator with Arduino.
</p>
<div class="project-showcase-left-side-btn">
<a href="https://youtu.be/kgavQEgJM4Yo">
<button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<div class="carousel-cell">
<div class="project-showcase-container">
<div class="project-showcase-image-container">
<img src="./Static_Design/assets/project-imgs/Microservobot.png" alt="" />
</div>
<div class="project-showcase-text-container">
<h1 class="project-showcase-title">Microservobot</h1>
<p>
Technology has made great advancements in recent years and has made life more easy and comfortable. Here
is one such project! Now do your work easily staying inside your own cozy space with the Micro Servo
Bot.The Bot helps us pick and place things according to our instructions. Isn’t that interesting?
Imagine yourself sitting on the sofa comfortably and giving instructions to the bot in the kitchen as it
picks up the ingredients and helps you cook. I am sure you’ll be having a great time.
</p>
<div class="project-showcase-left-side-btn">
<a href="https://youtu.be/5Q8fKzAPdVs">
<button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<div class="carousel-cell">
<div class="project-showcase-container">
<div class="project-showcase-image-container">
<img src="./Static_Design/assets/project-imgs/Face-recog.png" alt="" />
</div>
<div class="project-showcase-text-container">
<h1 class="project-showcase-title">Face recognition System</h1>
<p>
The face recognition system was done using haar-cascade classifier in open CV. At first, the model was
trained using Kanchan’s face. Then pyserial was used to connect with an Arduino to display the Face
detection result in an LCD screen connected to the Arduino.
</p>
<div class="project-showcase-left-side-btn">
<a href="https://youtu.be/9nP5I0d7hCo">
<button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<div class="carousel-cell">
<div class="project-showcase-container">
<div class="project-showcase-image-container">
<img src="./Static_Design/assets/project-imgs/555 timer ic.png" alt="" />
</div>
<div class="project-showcase-text-container">
<h1 class="project-showcase-title">Working of Computer Clock</h1>
<p>
We are considering how the 555 timer working in different sets of modes. so basically 555 timer have
three types of modes. Astable, monostable, bistable all of the modes can create square waveform except
bistable mode. we are using only astable or bistable mode in this project.
</p>
<div class="project-showcase-left-side-btn">
<a href="https://youtu.be/Q-_wgy63cfQ">
<button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- /// TECHFEST SECTION /// -->
<section class="techfest-section" id="techfest">
<div class="container container-techfest">
<h1 class="event-main-title">TechFest</h1>
<div class="techfest-event-details">
<div class="techtix-description">
<p class="event-title">
Our Techfest - <span class="part-techtix">Techtix</span>
</p>
<p class="event-text">
KGEC Robotics Society is back with a trip down the memory lane,
a tour to the exciting and most successful event of ESPEKTRO -
2020, the TechTix '20 events under KGEC - Robotics Society. With
our adrenaline rushing, and excitement reaching it's peek, the
Robotics Society conducted the following events for Techtix '20
having the best participation from the college -
</p>
<ul class="events-list">
<li>- RoboMaze</li>
<li>- Hydraulic Arm</li>
<li>- Water Rocket</li>
<li>- 1 vs 1</li>
<li>- WrestleMania</li>
<li>- Robo-soccer</li>
<li>- Turbulence</li>
</ul>
<p>And we made Techtix '20 a huge success !!</p>
</div>
<div class="event-content-links">
<div class="event-video">
<iframe width="560" height="315" src="https://www.youtube.com/embed/ESrFtRcL0KY"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<div class="content-links">
<div class="left-side-btns">
<a href="https://kgec-robotics-society.github.io/techFest/"><button class="btn btn-rectangular">
Explore more<i class="fa-solid fa-arrow-right-long"></i></button></a>
</div>
<ul class="social-media-list">
<li class="social-links">
<a href="mailto:[email protected]"><i class="fa-solid fa-envelope"></i></a>
</li>
<li class="social-links">
<a href="https://www.facebook.com/kgecrs/"><i class="fa-brands fa-facebook-f"></i></a>
</li>
<li class="social-links">
<a href="https://www.linkedin.com/company/kgecroboticssociety/"><i class="fab fa-linkedin-in"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- /// FACULTY SECTION /// -->
<section class="member-section" id="member">
<div class="faculty container">
<h2>Our Faculty Body</h2>
<div class="row-2">
<div class="card faculty-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/principal.png" alt="" />
</div>
<h3>Dr. Sourav Kumar Das</h3>
</div>
<div class="bottom-part">
<p>
Principal
</p>
<div class="social-handle">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card faculty-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/chairman.png" alt="" />
</div>
<h3>Dr. Satyendra Nath Mandal
</h3>
</div>
<div class="bottom-part">
<p>
Chairman
</p>
<div class="social-handle">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card faculty-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/secretary2.png" alt="" />
</div>
<h3>Dr. Sandip Nandi</h3>
</div>
<div class="bottom-part">
<p>
Secretary
</p>
<div class="social-handle">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card faculty-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/treasurer.png" alt="" />
</div>
<h3>Dr. Supriyo Banerjee</h3>
</div>
<div class="bottom-part">
<p>
Treasurer
</p>
<div class="social-handle">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- club heads -->
<div class="club-head container">
<h2>Our Student Body</h2>
<div class="row-3">
<div class="card clubHead-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Aritra_Biswas.jpg" alt="" />
</div>
<div class="name">
<h3>Aritra Biswas</h3>
</div>
</div>
<div class="bottom-part">
<p>Joint Secretary</p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/aritra-biswas-80566b239/" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://www.facebook.com/aritra.biswas.71697" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<!-- <a href="https://github.com/PSR0001" target="_blank"><i class="fa-brands fa-github"></i></a> -->
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card clubHead-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Sayak_Jana.jpg" alt="" />
</div>
<div class="name">
<h3>Sayak Jana</h3>
</div>
</div>
<div class="bottom-part">
<p>Joint Secretary</p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/sayak-jana-06ab55224?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BJ6MZSsb3Rk2B5Y9MO%2BOAqg%3D%3D" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://www.facebook.com/profile.php?id=100083122192130" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<!-- <a href="https://github.com/Ayancodes2601" target="_blank"><i class="fa-brands fa-github"></i></a> -->
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card clubHead-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Ayush Kumar Sharma.jpg" alt="" />
</div>
<div class="name">
<h3>Ayush Kumar Sharma</h3>
</div>
</div>
<div class="bottom-part">
<p>Additional Joint Secretary</p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/ayush-kumar-sharma-0499b1232?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BeQvZLIixS%2Fi873YvykfJIg%3D%3D" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<!-- <a href="https://www.facebook.com/profile.php?id=100067053204870" target="_blank"><i class="fa-brands fa-facebook"></i></a> -->
<a href="https://github.com/PHENOL47" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card clubHead-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Ajarul_Miah.jpeg" alt="" />
</div>
<div class="name">
<h3>Ajarul Miah</h3>
</div>
</div>
<div class="bottom-part">
<p>Additional Joint Secretary</p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/ajarul-miah-bb2bbb254?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BgKTGcXMmS8WMdRxQARgJ3g%3D%3D" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://www.facebook.com/loveingboy.amiah" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<!-- <a href="https://github.com/SunirbanRanjit" target="_blank"><i class="fa-brands fa-github"></i></a> -->
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card clubHead-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Souradeep_Bera.jpg" alt="" />
</div>
<div class="name">
<h3>Souradeep Bera</h3>
</div>
</div>
<div class="bottom-part">
<p>Additional Joint Secretary</p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/souradeep-bera-622836224?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BMR7okLAgQvSNdVjtYv2aTQ%3D%3D" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<!-- <a href="https://www.facebook.com/sorbajit.goswami?mibextid=ZbWKwL" target="_blank"><i class="fa-brands fa-facebook"></i></a> -->
<a href="https://github.com/Sun-09" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card clubHead-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Sk_Iftikar_Uddin.jpg" alt="" />
</div>
<div class="name">
<h3>Sk Iftikar Uddin</h3>
</div>
</div>
<div class="bottom-part">
<p>Additional Joint Secretary</p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/iftikar-uddin-03891823b?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BU33G%2BtYMSe%2Bg9%2Bzxqx14YQ%3D%3D" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://www.facebook.com/profile.php?id=100082099956688" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<!-- <a href="https://github.com/ahana02" target="_blank"><i class="fa-brands fa-github"></i></a> -->
<!-- <a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a> -->
</div>
</div>
</div>
</div>
</div>
<!-- Domain leads -->
<div class="domain-leads container">
<h2>Our Team Leads</h2>
<div class="row-3">
<div class="card domain-leads-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Syamantak_Pyne.jpg" alt="" />
</div>
<div class="name">
<h3>Syamantak Pyne</h3>
</div>
</div>
<div class="bottom-part">
<p>Graphics, Content & PR Team</p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/syamantak-pyne?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3B0HV%2BZL1QTZOC9TP6wYzmgw%3D%3D/" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<!-- <a href="https://www.facebook.com/arjun.singharoy.752" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<a href="https://github.com/PSR0001" target="_blank"><i class="fa-brands fa-github"></i></a> -->
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]." target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card domain-leads-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Anisha_Patra.jpg" alt="" />
</div>
<div class="name">
<h3> Anisha Patra </h3>
</div>
</div>
<div class="bottom-part">
<p>Core Electronics and IOT</p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/anisha-patra-b46483263?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BSMcxlLMGS52hFTKzP56hIg%3D%3D" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<!-- <a href="https://www.facebook.com/ayandip.garai.7" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<a href="https://github.com/Ayancodes2601" target="_blank"><i class="fa-brands fa-github"></i></a> -->
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card domain-leads-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Somaraho_Chaudhury.jpg" alt="" />
</div>
<div class="name">
<h3> Somaraho Chauudhury </h3>
</div>
</div>
<div class="bottom-part">
<p>Core Electronics and IOT</p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/somaraho-chaudhury-17368025a?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3Ba561OcVfQGaC5QxormubRg%3D%3D" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<!-- <a href="https://www.facebook.com/ayandip.garai.7" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<a href="https://github.com/Ayancodes2601" target="_blank"><i class="fa-brands fa-github"></i></a> -->
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card domain-leads-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Debamrita_Paul.jpg" alt="" />
</div>
<div class="name">
<h3>Debamrita Paul</h3>
</div>
</div>
<div class="bottom-part">
<p>AI, ML </p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/imdebamritapaul?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BDLW6AI2gQKCHud0W2tuEHg%3D%3D" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<!-- <a href="https://www.facebook.com/codehackerone" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<a href="https://github.com/codehackerone" target=""><i class="fa-brands fa-github"></i></a> -->
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card domain-leads-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Saikat_Panda.jpg" alt="" />
</div>
<div class="name">
<h3>Saikat Panda</h3>
</div>
</div>
<div class="bottom-part">
<p>AI, ML</p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/saikat-panda?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BnY8ohrZsSxipsnTdFe4ngA%3D%3D" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<!-- <a href="https://www.facebook.com/arnabdas.ad3000" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<a href="https://github.com/arnab-batsy" target="_blank"><i class="fa-brands fa-github"></i></a> -->
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card domain-leads-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Agnidipta_Basu.jpg" alt="" />
</div>
<div class="name">
<h3> Agnidipta Basu </h3>
</div>
</div>
<div class="bottom-part">
<p>Mechatronics </p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/agnidipta-basu-98b508241?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BWbsbxZ8SSWydan6ngzhVDg%3D%3D" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<!-- <a href="https://www.facebook.com/profile.php?id=100067053204870" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<a href="https://github.com/Kanchan1396" target="_blank"><i class="fa-brands fa-github"></i></a> -->
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="card domain-leads-card">
<div class="top-part">
<div class="image">
<img src="./Static_Design/assets/members/Sayandip_Paul.jpg" alt="" />
</div>
<div class="name">
<h3> Sayandip Paul </h3>
</div>
</div>
<div class="bottom-part">
<p> Web Development </p>
<div class="social-handle">
<a href="https://www.linkedin.com/in/sayandip-paul-4b66aa220?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BZUitB89TRQ%2BAkODNRqkcrw%3D%3D" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<!-- <a href="https://www.facebook.com/profile.php?id=100067053204870" target="_blank"><i class="fa-brands fa-facebook"></i></a>
<a href="https://github.com/Kanchan1396" target="_blank"><i class="fa-brands fa-github"></i></a> -->
<a href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- club members -->
<!-- <div class="club-mem container">
<h2>Our Members</h2>
<div class="member-list">
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
</div>
</div> -->
<!-- club Interns -->
<!-- <div class="interns container">
<h2>Our Interns</h2>
<div class="member-list">
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
<div class="member-list-item">Someone</div>
</div>
</div> -->
</section>
<!-- /// CONTACT SECTION /// -->
<section class="contact-section" id="contact">
<!-- <div class="notice-container container">
<h2>Notices</h2>
<div class="notice-box">
<div class="ongoing-notice">
<div class="notice-header">Ongoing</div>
<div class="notice-content">
<ul class="ongoing-list">
<li>Random</li>
<li>Random</li>
<li>Random</li>
</ul>
</div>
</div>
<div class="upcoming-notice">
<div class="notice-header">Upcoming</div>
<div class="notice-content">
<ul class="upcoming-list">
<li>Random</li>
<li>Random</li>
<li>Random</li>
<li>Random</li>
<li>Random</li>
<li>Random</li>
</ul>
</div>
</div>
</div>
</div> -->
<div class="contact-container container">
<div class="contact-box">
<h2 class="contact-text"> Get in Touch</h2>
<div class="form-container">
<form action="https://kgec-rs-backend.herokuapp.com/submit" name="get-in-touch" method="POST">
<div class="main-form">
<div class="name">
<h2>Name</h2>
<div class="input">
<label for="name"><i class="far fa-user"></i></label>
<input type="text" id="name" name="name" autocomplete="off" placeholder="Enter your name">
</div>