forked from IEEESBNSSCE/ieeesbnssce.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1298 lines (1085 loc) · 45.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
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 dir="ltr" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="google-site-verification: googlecad689c03318343d.html"
content="kBqWjP6V21As7UT1kR9kuHH4Yc9wtzMTs-ZKjcdCTzw" />
<!-- Stylesheets
============================================= -->
<link
href="https://fonts.googleapis.com/css?family=Lato:300,400,400i,700|Raleway:300,400,500,600,700|Crete+Round:400i"
rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="stylesheet" href="css/swiper.css" type="text/css" />
<link rel="stylesheet" href="css/dark.css" type="text/css" />
<link rel="stylesheet" href="css/font-icons.css" type="text/css" />
<link rel="stylesheet" href="css/animate.css" type="text/css" />
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css" />
<link rel="stylesheet" href="ac-style.css" type="text/css" />
<link rel="stylesheet" href="css/responsive.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Document Title
============================================= -->
<title> IEEE Students Branch NSSCE</title>
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
<style>
@media (min-width: 992px) {
#header .button {
margin: 30px 10px;
-webkit-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease;
}
body.top-search-open #header .button {
opacity: 0;
}
#header.sticky-header:not(.static-sticky) .button {
margin-top: 10px;
margin-bottom: 10px;
}
}
@media (max-width: 991px) {
#header .button {
display: none;
margin: 10px 5px 20px;
}
#header .button.d-block {
display: inline-block !important;
}
}
</style>
</head>
<body class="stretched sticky-responsive-menu">
<!-- ============================================
Notificatoin Tab
==================================================-->
<!--<div id="myModal" class="modal fade" style="margin: auto">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header" style="padding-top: 30px">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="section-title" align='center'>
<h2>Thus Spoke Engineers</h2>
<p>Coming Soon</p>
</div>
<!--<a href="https://www.xperion.ieeesbnssce.org" target="_blank">--> <!--<img src="images/events/2020/3.jpeg"
class="img-responsive" alt="Thus Spoke Engineers">
<!--</a>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$("#myModal").modal('show');
});
</script> -->
<!-- Top Bar
============================================= -->
<div id="top-bar" class="d-none d-md-block" style="background-color: #2E4490; color:white;">
<div class="container clearfix">
<div class="col_half nobottommargin" style="padding: auto; margin: auto;">
<a href="https://www.ieee.org/" style="color: white;" target="_blank">IEEE.org</a>|
<a href="http://ieeexplore.ieee.org/Xplore/home.jsp" style="color: white;" target="_blank">IEEE
Xplore Digital Library</a>|
<a href="http://standards.ieee.org/" style="color: white;" target="_blank">IEEE Standards</a>|
<a href="https://spectrum.ieee.org/" style="color: white;" target="_blank">IEEE Spectrum</a>|
<a href="https://ieeekerala.org/" style="color: white;" target="_blank">IEEE Kerala Section</a>|
<a href="http://www.ieeer10.org/" style="color: white;" target="_blank">IEEE Region 10</a>|
<a href="https://www.ieee.org/sitemap.html" style="color: white;" target="_blank">More Sites</a>
<!-- <strong>Call:</strong> 1800-547-2145 | <strong>Email:</stron> [email protected]</p> -->
</div>
</div>
</div><!-- #top-bar end -->
<!-- Header
============================================= -->
<header id="header">
<div id="header-wrap">
<div class="container clearfix">
<div id="primary-menu-trigger"><i class="icon-reorder"></i></div>
<!-- Logo
============================================= -->
<div id="logo">
<a href="index.html" class="standard-logo" data-dark-logo="images/sblogoinblue.png"><img
src="images/sblogoinblue.png"></a>
<a href="index.html" class="retina-logo" data-dark-logo="images/sblogoinblue.png"><img
src="images/sblogoinblue.png"></a>
</div><!-- #logo end -->
<!-- Primary Navigation
============================================= -->
<nav id="primary-menu">
<ul class="one-page-menu" data-easing="easeInOutExpo" data-speed="1500">
<li class="current"><a href="" data-href="#header">Home</a></li>
<li><a href="" data-href="#Achievements">Achievements</a></li>
<li><a href="#">Excom</a>
<ul>
<li><a href="execom2022.html">
<div>Excom 2022</div>
</a></li>
<li><a href="execom2021.html">
<div>Excom 2021</div>
</a></li>
<li><a href="execom2020.html">
<div>Excom 2020</div>
</a></li>
<li><a href="execom2019.html">
<div>Excom 2019</div>
</a></li>
<li><a href="execom2018.html">
<div>Excom 2018</div>
</a></li>
</ul>
</li>
<li><a href="#">SB chapters</a>
<ul>
<li><a href="pes.ieeesbnssce.org">
<div>PES</div>
</a></li>
<li><a href="ias.ieeesbnssce.org">
<div>IAS</div>
</a></li>
<li><a href="pels.ieeesbnssce.org">
<div>PELS</div>
</a></li>
<li><a href="">
<div>RAS</div>
</a></li>
<li><a href="">
<div>CS</div>
</a></li>
<li><a href="">
<div>IES</div>
</a></li>
<li><a href="">
<div>VTS</div>
</a></li>
<li><a href="">
<div>IMS</div>
</a></li>
<li><a href="">
<div>ComSoc</div>
</a></li>
</ul>
</li>
<li><a href="#" data-href="#events">Events</a>
<ul>
<li><a href="events2020.html">
<div>Events 2020</div>
</a></li>
<li><a href="events2019.html">
<div>Events 2019</div>
</a></li>
<li><a href="events2018.html">
<div>Events 2018</div>
</a></li>
</ul>
</li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
<a href="https://bit.ly/3QVD5Dn" class="button button-circle">Join Us</a>
</nav>
</div>
</div>
</header><!-- #header end -->
<section id="slider" class="slider-element slider-parallax swiper_wrapper full-screen clearfix" data-autoplay="7000"
data-speed="650" data-loop="true">
<div class="slider-parallax-inner">
<div class="swiper-container swiper-parent">
<div class="swiper-wrapper">
<div class="swiper-slide dark" style="background-image: url('images/slider/swiper/8.jpg');">
<div class="container clearfix">
<div class="slider-caption slider-caption-center">
<h2 data-caption-animate="fadeInUp">IEEE SB NSSCE</h2>
<p class="d-none d-sm-block" data-caption-animate="fadeInUp" data-caption-delay="200">
</p>
</div>
</div>
</div>
<div class="swiper-slide dark"
style="background-image: url('images/slider/swiper/5.jpg'); background-position: center;">
<div class="container clearfix">
<div class="slider-caption ">
<h2 data-caption-animate="fadeInUp">ADVANCING HUMANITY</h2>
</div>
</div>
</div>
<div class="swiper-slide dark"
style="background-image: url('images/slider/swiper/7.jpg'); background-position: center;">
<div class="container clearfix">
<div class="slider-caption ">
<h2 data-caption-animate="fadeInUp">OUR STRENGTH</h2>
</div>
</div>
</div>
<div class="swiper-slide dark"
style="background-image: url('images/slider/swiper/4.jpg'); background-position: center;">
<div class="container clearfix">
<div class="slider-caption ">
<h2 data-caption-animate="fadeInUp">OUR STRENGTH</h2>
</div>
</div>
</div>
<div class="swiper-slide dark"
style="background-image: url('images/slider/swiper/3.jpg'); background-position: center;">
<div class="container clearfix">
<div class="slider-caption ">
<h2 data-caption-animate="fadeInUp">OUR STRENGTH</h2>
</div>
</div>
</div>
<div class="swiper-slide dark"
style="background-image: url('images/slider/swiper/2.jpg'); background-position: center;">
<div class="container clearfix">
<div class="slider-caption ">
<h2 data-caption-animate="fadeInUp">OUR STRENGTH</h2>
</div>
</div>
</div>
<div class="swiper-slide dark"
style="background-image: url('images/slider/swiper/1.jpg'); background-position: center;">
<div class="container clearfix">
<div class="slider-caption ">
<h2 data-caption-animate="fadeInUp">OUR STRENGTH</h2>
</div>
</div>
</div>
</div>
<div class="slider-arrow-left"><i class="icon-angle-left"></i></div>
<div class="slider-arrow-right"><i class="icon-angle-right"></i></div>
<div class="slide-number">
<div class="slide-number-current"></div><span>/</span>
<div class="slide-number-total"></div>
</div>
</div>
</div>
</section>
<!-- Content
============================================= -->
<section id="content">
<div class="content-wrap">
<!-- ============== Upcoming ============== -->
<div class="fancy-title title-dotted-border title-center">
<h2><span>UPCOMING EVENTS</span></h2>
</div>
<section id="features">
<div class="container">
<div class="row">
<div class="col-md-4 feature-item">
<div class="content wow fadeInDown" data-wow-delay=".15s">
<div class="entry-image clearfix">
<div data-lightbox="gallery">
<a href="upcoming/encrypta 3.0.png" data-lightbox="gallery-item"><img class="image_fade"
src="upcoming/encrypta 3.0.png" alt="Cybersecurity"></a>
</div>
</div>
</div>
</div>
<div class="col-md-4 feature-item">
<div class="content wow fadeInDown" data-wow-delay=".15s">
<div class="entry-image clearfix">
<div data-lightbox="gallery">
<a href="upcoming/SOURORJYA.jpg" data-lightbox="gallery-item"><img class="image_fade"
src="upcoming/SOURORJYA.jpg" alt="Black Hole"></a>
</div>
</div>
</div>
</div>
<div class="col-md-4 feature-item">
<div class="content wow fadeInDown" data-wow-delay=".15s">
<div class="entry-image clearfix">
<div data-lightbox="gallery">
<a href="upcoming/wiesdom.jpg" data-lightbox="gallery-item"><img class="image_fade"
src="upcoming/wiesdom.jpg" alt="Cybersecurity"></a>
</div>
</div>
</div>
</div>
<div class="col-md-4 feature-item">
<div class="content wow fadeInDown" data-wow-delay=".15s">
<div class="entry-image clearfix">
<div data-lightbox="gallery">
<a href="upcoming/X21-100.jpg" data-lightbox="gallery-item"><img class="image_fade"
src="upcoming/X21-100.jpg" alt="Black Hole"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ========= //Upcoming ========= -->
<!-- ============== Start News section ============== -->
<div class="fancy-title title-dotted-border title-center">
<h2><span>TRENDING NEWS</span></h2>
</div>
<section id="features">
<div class="container">
<div class="row">
<div class="col-md-4 feature-item">
<div class="content wow fadeInDown" data-wow-delay=".15s">
<div class="entry-image clearfix">
<div data-lightbox="gallery">
<a href="images/news/1.jpg" data-lightbox="gallery-item"><img class="image_fade"
src="images/news/1.jpg" alt="Cybersecurity"></a>
</div>
</div>
<a href="https://searchsecurity.techtarget.com/definition/cybersecurity"
target="_blank">
<h5 class="title text-center"><u>Cybersecurity</u></h5>
</a>
<p class="info" style="text-align:justify">
Cybersecurity aims at providing protection for internet-connected systems
such as hardware, software and data from cyberthreats.With an increasing
number of users, devices and programs in the modern enterprise, combined with the increased deluge of data,
much of which is sensitive or confidential, individuals and enterprises rely on cybersecurity to protect their
data centers and other computerized systems from unauthorized access.
<br><a
href="https://searchsecurity.techtarget.com/definition/cybersecurity"
target="_blank">Click here for more</a>
</p>
</div>
</div>
<div class="col-md-4 feature-item">
<div class="content wow fadeInDown" data-wow-delay=".15s">
<div class="entry-image clearfix">
<div data-lightbox="gallery">
<a href="images/news/4.jpg" data-lightbox="gallery-item"><img class="image_fade"
src="images/news/4.jpg" alt="Black Hole"></a>
</div>
</div>
<a href="https://www.redhat.com/en/topics/open-source/what-is-open-source"
target="_blank">
<h5 class="title text-center"><u>Open Source</u></h5>
</a>
<p class="info" style="text-align:justify">
Open source is a term that originally referred to open source software (OSS).
Open source software is code that is designed to be publicly accessible—anyone can see, modify, and distribute the code as they see fit.
Open source software is developed in a decentralized and collaborative way, relying on peer review and community production. Open source software is often cheaper, more flexible, and has more longevity than its proprietary peers because it is developed by communities rather than a single author or company.
<br><a
href="https://www.redhat.com/en/topics/open-source/what-is-open-source"
target="_blank">Click here for more</a>
</p>
</div>
</div>
<div class="col-md-4 feature-item">
<div class="content wow fadeInDown" data-wow-delay=".15s">
<div class="entry-image clearfix">
<div data-lightbox="gallery">
<a href="images/news/3.jpeg" data-lightbox="gallery-item"><img class="image_fade"
src="images/news/3.jpeg" alt="IoT"></a>
</div>
</div>
<a href="https://internetofthingsagenda.techtarget.com/definition/Internet-of-Things-IoT" target="_blank">
<h5 class="title text-center"><u>Internet Of Things</u></h5>
</a>
<p class="info" style="text-align:justify">
The internet of things, or IoT, is a system of interrelated computing devices, mechanical and digital machines,
objects, animals or people that are provided with unique identifiers (UIDs) and the ability to transfer data over
a network without requiring human-to-human or human-to-computer interaction.It helps people live and work smarter
and also enables companies to automate processes and reduce labor costs.
<br><a href="https://internetofthingsagenda.techtarget.com/definition/Internet-of-Things-IoT"
target="_blank">Click here for more</a>
</p>
</div>
</div>
</div> <!-- //row -->
</div> <!-- //container -->
</section>
<!-- ========= //End News section ========= -->
<a href="about.html" class="button button-full center tright topmargin ">
<div class="container clearfix">
What is IEEE? <strong>Why you should Join?</strong> <i class="icon-caret-right"
style="margin: auto;"></i>
</div>
</a>
<div class="container clearfix">
<div class="fancy-title title-dotted-border title-center">
<h2><span>COUNSELLOR</span></h2>
</div>
<div class="col-lg-6 bottommargin">
<div class="team team-list clearfix">
<div class="team-image">
<img class="rounded-circle" src="images/advisors/4.jpg" alt="Vijitha S">
</div>
<div class="team-desc">
<div class="team-title">
<h4 style="text-align:center">Vijitha S</h4><span></span>
</div>
<div class="team-content" style="text-align: justify;">Working as an Assistant Professor
in ECE Department, since 2001. Persued B.Tech from Adhiyamaan College of Engineering
in the year 1998, M.Tech from ANNA University in the year 2011.
</div>
</div>
</div>
</div>
</div>
<div class="container center clearfix" id="Achievements">
<div class="fancy-title title-dotted-border title-center">
<h2><span>Achievements</span></h2>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="main-timeline">
<div class="timeline">
<span class="timeline-icon"></span>
<span class="year">2022</span>
<div class="timeline-content">
<span class="icon fa fa-globe"></span>
<h3 class="title">UNPLUG 2022</h3>
<p class="description">
Darrel Chong - Bronze
</p>
</div>
</div>
<div class="timeline">
<span class="timeline-icon"></span>
<span class="year">2022</span>
<div class="timeline-content">
<span class="icon fa fa-globe"></span>
<h3 class="title">HPSBCP 2022 - IEEE PES SBC NSSCE</h3>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="main-timeline">
<div class="timeline">
<span class="timeline-icon"></span>
<span class="year">2022</span>
<div class="timeline-content">
<span class="icon fa fa-globe"></span>
<h3 class="title">IEEE HAC Project 4100$</h3>
<p class="description">
IEEE SIGHT Group NSSCE
</p>
</div>
</div>
<div class="timeline">
<span class="timeline-icon"></span>
<span class="year">2021</span>
<div class="timeline-content">
<span class="icon fa fa-globe"></span>
<h3 class="title">HPSBCP 2021 - IEEE PES SBC NSSCE</h3>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="main-timeline">
<div class="timeline">
<span class="timeline-icon"></span>
<span class="year">2021</span>
<div class="timeline-content">
<span class="icon fa fa-globe"></span>
<h3 class="title">Four Distinguished Lecture Projects</h3>
<p class="description">
PELS, PES, IMS, VTS
</p>
</div>
</div>
<div class="timeline">
<span class="timeline-icon"></span>
<span class="year">2021</span>
<div class="timeline-content">
<span class="icon fa fa-globe"></span>
<h3 class="title">Richard E Merwin Scholarship</h3>
<p class="description">
Bhadra Jayakumar
</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="main-timeline">
<div class="timeline">
<span class="timeline-icon"></span>
<span class="year">2021</span>
<div class="timeline-content">
<span class="icon fa fa-globe"></span>
<h3 class="title">Photography Contest - Bronze $250 Glabally</h3>
<p class="description">
IEEE PELS DAY 2021
</p>
</div>
</div>
<div class="timeline">
<span class="timeline-icon"></span>
<span class="year">2021</span>
<div class="timeline-content">
<span class="icon fa fa-globe"></span>
<h3 class="title">Experion 2021 Globally</h3>
<p class="description">
IEEE Darrel Chong Bronze
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<a href="achievements.html" style="padding-bottom: 30px;">
<button class="button button-circle button-large">View More
</button>
</a>
</div>
<div class="container center clearfix" id="Excom">
<!-- <h2></h2> -->
<div class="fancy-title title-dotted-border title-center">
<h1><span>EXCOM</span></h1>
</div>
<!-- <div class ="line" style="padding: 0"></div> -->
<div class="tab-content clearfix" id="tab-connections">
<div class="row topmargin-sm">
<div class="col-lg-3 col-md-6 bottommargin" style="margin: auto;">
<div class="team">
<div class="team-image">
<img class="rounded-circle" style="height: 250px; width: auto;"
src="images/team/2022/SB/Rakesh-modified.png">
</div>
<div class="team-desc">
<div class="team-title">
<h4>Rakesh MR</h4><span>Chairman</span>
</div>
<a href="mailto:[email protected]"
class="i-circled inline-block i-light i-alt i-small icon-edit">
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 bottommargin" style="margin: auto;">
<div class="team">
<div class="team-image">
<img class="rounded-circle" style="height: 250px; width: auto;"
src="images/team/2022/SB/Abhijith-modified.png">
</div>
<div class="team-desc">
<div class="team-title">
<h4>Abhijith</h4><span>Vice Chairman</span>
</div>
<a href="mailto:[email protected]"
class="i-circled inline-block i-light i-alt i-small icon-edit">
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 bottommargin" style="margin: auto;">
<div class="team">
<div class="team-image">
<img class="rounded-circle" style="height: 250px; width: auto;"
src="images/team/2022/SB/devika.-modified.png">
</div>
<div class="team-desc">
<div class="team-title">
<h4>Devika</h4><span>Secretary</span>
</div>
<a href="mailto:[email protected]"
class="i-circled inline-block i-light i-alt i-small icon-edit">
</a>
</div>
</div>
</div>
</div>
<a href="execom2022.html">
<button class="button button-circle button-large">View Full Panel
</button>
</a>
</div>
<br />
<div class="fancy-title title-dotted-border title-center" id="chapters">
<h1><span>Our Family</span></h1>
</div>
<div class="row">
<div class="col-lg-12">
<h2>Student Branch Chapters</h2>
<!--
<a href="pels.html"><img class="rounded-circle" src="images/chapters/IAS.jpg" alt="IAS" style="width: 250px; height: 250px;border-style: solid;margin: 5px;border-width: 2px;"></a> -->
<a href="ias.ieeesbnssce.org"><img class="rounded-circle" src="images/chapters/IAS.jpg"
alt="IAS"
style="width: 250px; height: 250px;border-style: solid;border-style:solid;border-color:black;margin: 5px;border-width: 2px;"></a>
<a href="pes.ieeesbnssce.org">
<img src="images/chapters/PES.jpg" class="rounded-circle" alt="PES"
style="width: 250px; height: 250px;border-style: solid;border-style:solid;border-color:black;margin: 5px;border-width: 2px;">
</a>
<a href="pels.ieeesbnssce.org">
<img src="images/chapters/PELS.jpg" class="rounded-circle" alt="PELS"
style="width: 250px; height: 250px;border-style: solid;border-style:solid;border-color:black;margin: 5px;border-width: 2px;">
</a>
<a href="">
<img src="images/chapters/RAS.png" class="rounded-circle" alt="RAS"
style="width: 250px; height: 250px;border-style: solid;border-style:solid;border-color:black;margin: 5px;border-width: 2px;">
</a>
<a href="">
<img src="images/chapters/CS.jpg" class="rounded-circle" alt="CS"
style="width: 250px; height: 250px;border-style: solid;border-style:solid;border-color:black;margin: 5px;border-width: 2px;">
</a>
<a href="">
<img src="images/chapters/IES.jpg" class="rounded-circle" alt="IES"
style="width: 250px; height: 250px;border-style: solid;border-style:solid;border-color:black;margin: 5px;border-width: 2px;">
</a>
<a href="">
<img src="images/chapters/VTS.jpg" class="rounded-circle" alt="VTS"
style="width: 250px; height: 250px;border-style: solid;border-style:solid;border-color:black;margin: 5px;border-width: 2px;">
</a>
<a href="">
<img src="images/chapters/IMS.jpg" class="rounded-circle" alt="IMS"
style="width: 250px; height: 250px;border-style: solid;border-style:solid;border-color:black;margin: 5px;border-width: 2px;">
</a>
<a href="">
<img src="images/chapters/ComSoc.jpg" class="rounded-circle" alt="ComSoc"
style="width: 250px; height: 250px;border-style: solid;border-style:solid;border-color:black;margin: 5px;border-width: 2px;">
</a>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<h2>Affinity Group</h2>
<a target="_blank" href="wie.html">
<img src="images/chapters/WIE.jpg" class="rounded-circle" alt="WIE"
style="width: 250px; height: 250px;border-style: solid;border-style:solid;border-color:black;padding: 10px; margin: 5px;border-width: 2px;">
</a>
</div>
<div class="col-lg-6">
<h2>Special Interest Group</h2>
<a target="_blank" href="">
<img src="images/chapters/SIGHT.jpg" class="rounded-circle" alt="SIGHT"
style="width: 250px; height: 250px;border-style: solid;border-style:solid;border-color:black;padding: 10px; margin: 5px;border-width: 2px;">
</a>
</div>
</div>
<br>
<br>
<br>
<br>
<!-- Posts
============================================= -->
<div id="events">
<div class="fancy-title title-dotted-border title-center">
<h1><span>Events </span>Timeline</h1>
</div>
<div id="posts" class="post-grid grid-container post-masonry post-timeline grid-2 clearfix">
<div class="timeline-border"></div>
<!-- <div class="entry entry-date-section notopmargin"><span>Upcoming</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<a href="images/events/72.jpeg" data-lightbox="image"><img class="image_fade" src="images/events/2020/3.jpeg" alt="Thus Spoke Engineers"></a>
</div>
<div class="entry-title">
<h2> Thus Spoke Engineers</h2>
</div>
<!--<ul class="entry-meta clearfix">
<li><i class="icon-calendar3"></i>8-10 February 2019<br>
</ul>
<div class="entry-content">
<p>
<b>"Learning - a process of remembering what you are interested in."</b> <br>-Richard Saul<br><br>
<b>IEEE SIGHT Group NSSCE</b> in collaboration with <b>APJ Abdul Kalam Technological University</b> brings forth <b>"THUS SPOKE ENGINEERS".</b><br><br>
Brake your crates.<br><br>
A touchstone to the Engineering aspirants 2020-24.
</p>
</div>
</div>
<!--
<div class="entry entry-date-section notopmargin"><span>Upcoming</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<a href="images/events/44.jpg" data-lightbox="image"><img class="image_fade"
src="images/events/2019/55.jpeg" alt="Standard Post with Image"></a>
</div>
<div class="entry-title">
<h2> Basics of React Native Workshop</h2>
</div>
<ul class="entry-meta clearfix">
<li><i class="icon-calendar3"></i>3 September 2019<br>
</ul>
<div class="entry-content">
<p>IEEE SB NSSCE Compiling an Android Workshop<br>
1. We welcome students of colleges all over India.<br>
3. Learn on React Native and build your first cross-platofrm app <br>
<!-- IEEE CS Student: ₹200<br>
IEEE Member:₹ 240 <br>
Non IEEE Member: ₹300<br>
Registrations will be open soon.<br>
Wait for more fun, its just the beginning.<br><br>
#IEEESBNSSCE <br>
#feel_the_tharNgam</p>
</div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<a href="images/events/44.jpg" data-lightbox="image"><img class="image_fade"
src="images/events/2019/55.jpeg" alt="Standard Post with Image"></a>
</div>
<div class="entry-title">
<h2> Cyber Security Workshop</h2>
</div>
<ul class="entry-meta clearfix">
<li><i class="icon-calendar3"></i>31 August 2019<br>
</ul>
<div class="entry-content">
<p>IEEE SB NSSCE Compiling an Android Workshop<br>
1. We welcome students of colleges all over India.<br>
3. Learn on Cyber Security <br>
<!-- IEEE CS Student: ₹200<br>
IEEE Member:₹ 240 <br>
Non IEEE Member: ₹300<br>
Registrations will be open soon.<br>
Wait for more fun, its just the beginning.<br><br>
#IEEESBNSSCE <br>
#feel_the_tharNgam</p>
</div>
</div>
-->
<!--<div class="entry entry-date-section notopmargin"><span>Upcoming</span></div>-->
<div class="entry entry-date-section notopmargin"><span>January 2021</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<a href="images/events/80.jpg" data-lightbox="image"><img class="image_fade"
src="images/events/2020/4.jpg" alt="Standard Post with Image"></a>
</div>
<div class="entry-title">
<h2>Wie Week Celebrations</h2>
</div>
<ul class="entry-meta clearfix">
<li><i class="icon-calendar3"></i> 2th to 7th March 2020</li>
</ul>
<div class="entry-content">
<p style="text-align:justify">On the occasion of WiE week celebrations organised by Kerala section IEEE SB NSSCE Wie actively involved as a team in conducting various events like open debate,continuous training session on PCB fabrication,science quiz etc.</p>
</div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
<div class="timeline-divider"></div>
</div>
<div class="entry-image clearfix">
<div class="portfolio-single-image masonry-thumbs grid-3" data-big="1"
data-lightbox="gallery">
<a href="images/events/2020/2.jpg" data-lightbox="gallery-item"><img
class="image_fade" src="images/events/2020/2.jpg" alt=""></a>
<a href="images/events/2020/1.jpg" data-lightbox="gallery-item"><img
class="image_fade" src="images/events/2020/1.jpg" alt=""></a>
</div>
</div>
<div class="entry-title">
<h2>Xperion'20</h2>
</div>
<ul class="entry-meta clearfix">
<li><i class="icon-calendar3"></i> 20th to 23rd February 2020</li>
</ul>
<div class="entry-content">
<p style="text-align:justify">
Xperion is a flagship event of IEEE SB NSSCE hosted by 9 societies ( power and
energy society, Industrial applications society , Power electronics society,
Robotics and automation society, computervsociety, Communication society,
Instrumentation society, Women in engineering affinity group, Vehicular
technological society ) . It is interested in advancement of the theory and practice
of engineering in development , design , manufacture and application of electrical
systems, apparatus, sevices, health, and safety issues , creation of voluntary
engineering standards and recommended practices and the professional development of
it's membership. It exhibits technical talks , sessions , workshops , hackathons ,
Industrial visits , cultural events, and a lot more!!
</p>
</div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<a href="images/events/2019/80.jpg" data-lightbox="image"><img class="image_fade"
src="images/events/2019/80.jpg" alt="Standard Post with Image"></a>
</div>
<div class="entry-title">
<h2>Technical Interactive session with Alumni</h2>
</div>
<ul class="entry-meta clearfix">
<li><i class="icon-calendar3"></i> 16th January 2020</li>
</ul>
<div class="entry-content">
<p style="text-align:justify">An interactive session was conducted by Alumni Association
NSSCE with IEEE IAS
SBC NSSCE, Palakkad for the students. The session was on 16/01/2020 at 1:00 pm
in DLH hall. The session was conducted by two alumnis Mr. Prakash Bare,
cofounder GDA Technologies INC, USAnd Smt. Lekha Balachandran, Managing partner,
Resitech Electricals. 72 students from various branches actively participated in
the interactive session.</p>
</div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<a href="images/events/79.jpg" data-lightbox="image"><img class="image_fade"
src="images/events/2019/79.jpg" alt="Standard Post with Image"></a>
</div>
<div class="entry-title">
<h2>Snapshot- Photography Contest</h2>
</div>
<ul class="entry-meta clearfix">
<li><i class="icon-calendar3"></i> 11th November 2019</li>
</ul>
<div class="entry-content">
<p style="text-align:justify">
The IEEE IAS Student Branch Chapter of NSSCE in collaboration with Friday photo
club conducted a photography competition named Snapshot as a pre-event of
XPERION 2020. The theme was unseen frames of NSSCE. The competition started on
11th November 2019 and ends on 20th November 2019.The entries was screened and
uploaded in Instagram page of Friday Photo Club. The evaluation was done based
on the likes got on Instagram page and FPC Coordinators.
The event was grant success and received huge number of entries. Bhaskar S of S7
EEE from NSSCE won the competition.
</p>