-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
2146 lines (2017 loc) · 80.9 KB
/
index.html
File metadata and controls
2146 lines (2017 loc) · 80.9 KB
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>
<head>
<title>IEEE | IIT Mandi</title>
<link rel="stylesheet" type="text/css"
href="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.css" />
<link rel="icon" href="img/Blog_Pic.jpg" type="image">
<meta charset="utf-8">
<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">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,500|Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="./resize-dimension.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<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=EB+Garamond:ital,wght@1,500&display=swap" rel="stylesheet">
<script>
jQuery(document).ready(function () {
var $window = $(window);
var lastWindowWidth = $window.width();
$window.resize(function () {
var windowWidth = $window.width();
if (lastWindowWidth !== windowWidth) {
lastWindowWidth = windowWidth;
}
setTimeout(function () {
location.reload();
console.log("delay");
}, 100);
});
if (lastWindowWidth < 1000) {
jQuery('.carousel[data-type=""] .item').each(function () {
var next = jQuery(this).next();
if (!next.length) {
next = jQuery(this).siblings(':first');
}
next.children(':first-child').clone().appendTo(jQuery(this));
for (var i = 0; i < 2; i++) {
next = next.next();
if (!next.length) {
next = jQuery(this).siblings(':first');
}
next.children(':first-child').clone().appendTo($(this));
}
});
}
else {
jQuery('.carousel[data-type="multi"] .item').each(function () {
var next = jQuery(this).next();
if (!next.length) {
next = jQuery(this).siblings(':first');
}
next.children(':first-child').clone().appendTo(jQuery(this));
for (var i = 0; i < 2; i++) {
next = next.next();
if (!next.length) {
next = jQuery(this).siblings(':first');
}
next.children(':first-child').clone().appendTo($(this));
}
});
}
});
</script>
<style type="text/css">
@media (max-width:999px) {
.drop-down-menu {
display: none;
}
}
a.back-to-top {
display: none;
position: fixed;
bottom: 30px;
right: 35px;
text-decoration: none;
}
a.back-to-top i {
display: block;
font-size: 22px;
width: 40px;
height: 40px;
line-height: 40px;
color: #fff;
background-image: linear-gradient(65deg, #3f3134 0, #000000 100%);
border-radius: 30px;
text-align: center;
transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.14), 0 2px 4x rgba(0, 0, 0, 0.28);
}
a.back-to-top:hover,
a.back-to-top:focus {
text-decoration: none;
}
</style>
</head>
<body data-target=".navbar" data-offset="50" id="myPage">
<!-- NAVBAR STARTS-->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#myPage">
<img src="img/ieee mb white png.png" alt="Logo"
style="height: 40px; transform: translate(5px,-10px);" id="logo">
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#resource">Resources</a></li>
<li><a href="#achievements">Achievements</a></li>
<li><a href="index.html#membershere">Executive Council</a></li>
<li class="drop-down" id="events-drop-down"><a>Events  <i class="fa fa-caret-down"></i></a>
<ul class="drop-down-menu" id="ul-drop-down">
<li><a href="upcomingEvents.html">Upcoming Events</a></li>
<li><a href="events2022.html">Events 2022</a></li>
<li><a href="events2021.html">Events 2021</a></li>
<li><a href="events2020.html">Events 2020</a></li>
<li><a href="events2019.html">Events 2019</a></li>
</ul>
</li>
<li><a href="index.html#gallery">Gallery</a></li>
<li><a href="index.html#contact_us">Contact</a></li>
</ul>
</div>
</div>
</nav>
<script type="text/javascript">
$(document).ready(function () {
// Transition effect for navbar
$(window).scroll(function () {
// checks if window is scrolled more than 500px, adds/removes solid class
if ($(this).scrollTop() > $(window).height()) {
$('.navbar').addClass('solid');
} else {
$('.navbar').removeClass('solid');
}
});
});
if ($('.nav-menu').length) {
var $mobile_nav = $('.nav-menu').clone().prop({
class: 'mobile-nav d-lg-none'
});
$('body').append($mobile_nav);
$('body').prepend('<button type="button" class="mobile-nav-toggle d-lg-none"><i class="icofont-navigation-menu"></i></button>');
$('body').append('<div class="mobile-nav-overly"></div>');
$(document).on('click', '.mobile-nav-toggle', function (e) {
$('body').toggleClass('mobile-nav-active');
$('.mobile-nav-toggle i').toggleClass('icofont-navigation-menu icofont-close');
$('.mobile-nav-overly').toggle();
});
$(document).on('click', '.mobile-nav .drop-down > a', function (e) {
e.preventDefault();
$(this).next().slideToggle(300);
$(this).parent().toggleClass('active');
});
$(document).click(function (e) {
var container = $(".mobile-nav, .mobile-nav-toggle");
if (!container.is(e.target) && container.has(e.target).length === 0) {
if ($('body').hasClass('mobile-nav-active')) {
$('body').removeClass('mobile-nav-active');
$('.mobile-nav-toggle i').toggleClass('icofont-navigation-menu icofont-close');
$('.mobile-nav-overly').fadeOut();
}
}
});
} else if ($(".mobile-nav, .mobile-nav-toggle").length) {
$(".mobile-nav, .mobile-nav-toggle").hide();
}
</script>
<!-- NAVBAR ENDS -->
<a href="#" class="back-to-top">
<i class="fas fa-arrow-up"></i>
</a>
<script>
var offset = 200;
var duration = 500;
$(window).scroll(function () {
if ($(this).scrollTop() > offset) {
$('.back-to-top').fadeIn(400);
} else {
$('.back-to-top').fadeOut(400);
}
});
$('.back-to-top').on('click', function (event) {
event.preventDefault();
$('html, body').animate({
scrollTop: 0
}, 600);
return false;
});
</script>
<!-- CAROUSEL STARTS -->
<div id="headImg">
<div id="particles-js"></div>
<script type="text/javascript">
$("#particles-js").css("height", $(window).height())
</script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script type="text/javascript">
particlesJS("particles-js", {
"particles": {
"number": {
"value": 150,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": "#16a0f5"
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#00FFFF"
},
"polygon": {
"nb_sides": 5
},
"image": {
"src": "img/github.svg",
"width": 100,
"height": 100
}
},
"opacity": {
"value": 1,
"random": false,
"anim": {
"enable": true,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 5,
"random": true,
"anim": {
"enable": true,
"speed": 30,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#16a0f5",
"opacity": .4,
"width": 1.5
},
"move": {
"enable": true,
"speed": 6,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": true,
"mode": "repulse"
},
"onclick": {
"enable": true,
"mode": "repulse"
},
"resize": true
},
"modes": {
"grab": {
"distance": 400,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 100,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
});
var count_particles, stats, update;
stats = new Stats;
stats.setMode(0);
stats.domElement.style.position = 'absolute';
stats.domElement.style.left = '0px';
stats.domElement.style.top = '0px';
document.body.appendChild(stats.domElement);
count_particles = document.querySelector('.js-count-particles');
update = function () {
stats.begin();
stats.end();
if (window.pJSDom[0].pJS.particles && window.pJSDom[0].pJS.particles.array) {
count_particles.innerText = window.pJSDom[0].pJS.particles.array.length;
}
requestAnimationFrame(update);
};
requestAnimationFrame(update);;
</script>
<div class="centered" style="left:10%; top: 35vh;">
<h1 style="color: white; letter-spacing: 1px; font-size:2.5vw;">IEEE IIT Mandi</h1>
</div>
<div class="centered" style="top:40vh; left:10%">
<h1 style="color: white; font-size:5vw;">Institute of Electrical and Electronics Engineers</h1>
</div>
</div>
<!--CAROUSEL ENDS-->
<!--ABOUT US STARTS-->
<div id="about_us">
<div class="container">
<div id="band" class="text-center">
<br><br>
<h1>About Us</h1>
<hr style="border:solid black 1px;"><br>
</div>
<div class="row">
<div class="col-sm-6">
<img id="about_us_image" src="img/ieee_logo.png" alt="Logo" class="img-responsive"
id="about-us-logo">
</div>
<div class="col-sm-5" style="text-align: justify;">
<p> IEEE IIT Mandi is a student chapter of the Institute of Electrical and Electronics Engineers
(IEEE). We are a
student-run organization at the IIT Mandi, our motives are to find ourselves and our passions,
to have fun and
meet new people, gather new experiences, to learn industrial skills to enhance ourselves, to
learn about research
and innovation in technology, to help our community and to get inspired to change the world!</p>
<h3> What is IEEE? </h3>
<p>The Institute of Electrical and Electronics Engineers, or IEEE, is a technical professional
organisation. While
it has electrical and electronics engineering at its core, it’s composed of engineers,
scientists and other
professionals, who have interests in electrical and computer sciences, engineering, and varied,
but related
disciplines. It’s dedicated to fostering technological innovation and excellence for the benefit
of humanity. It
does so by sponsoring conferences, publishing transactions, journals, and magazines, developing
standards, and
through its educational programs. It’s the largest professional association in the world !</p>
</div>
</div>
</div>
<br>
</div>
<style>
#about_us_image {
width: 80%;
margin-left: 40px;
padding-top: 130px;
}
@media screen and (max-width: 850px) {
#about_us_image {
padding-top: 80%;
}
}
@media screen and (max-width: 750px) {
#about_us_image {
width: 75%;
padding-top: 0%;
margin-bottom: 15px;
}
}
</style>
<!--ABOUT US ENDS-->
<!-- QUOTATION STARTS -->
<br>
<div class="container-fluid quotes" style="background-image: url(img/bg-quote.jpg);">
<div id="text-carousel" class="carousel slide" data-ride="carousel">
<i class="fas fa-quote-left"
style="color: white; margin-left: 15%; font-size: 50px; opacity: 0.8; position: absolute;"></i>
<!-- Wrapper for slides -->
<div class="row">
<div class="col-xs-offset-3 col-xs-7" style="transform: translateY(30px);">
<div class="carousel-inner quote">
<div class="item active ">
<div class="carousel-content">
<div>
<p
style="color:rgb(32, 31, 31);font-family: 'EB Garamond', serif;font-size: 24px;font-weight: lighter;">
Your assumptions are your windows on the world. Scrub them
off every once in a while, or the light won't come in.</p>
<h4 style="padding-bottom: 20px;">-Isaac Asimov</h4>
</div>
</div>
</div>
<div class="item">
<div class="carousel-content">
<div>
<p
style="color:rgb(32, 31, 31);font-family: 'EB Garamond', serif;font-size: 24px;font-weight: lighter;">
All outstanding work, in art as well as in science, results
from immense zeal applied to a great idea.</p>
<h4 style="padding-bottom: 20px;">-Santiago Ramón y Cajal</h4>
</div>
</div>
</div>
<div class="item">
<div class="carousel-content">
<div>
<p
style="color:rgb(32, 31, 31);font-family:'EB Garamond', serif;font-size: 24px;font-weight: lighter;">
Science is the acceptance of what works and the rejection of
what does not. That needs
more courage than we might think.</p>
<h4 style="padding-bottom: 20px;">-Jacob Bronowski</h4>
</div>
</div>
</div>
<div class="item">
<div class="carousel-content">
<div>
<p
style="color:rgb(32, 31, 31);font-family:'EB Garamond', serif;font-size: 24px;font-weight: lighter;">
Science knows no country, because knowledge belongs to
humanity, and is the torch which illuminates the world.</p>
<h4 style="padding-bottom: 20px;">-Louis Pasteur</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- QUOTATIONS END -->
<!--SOCIETIES START-->
<br>
<div id="services" class="container text-center">
<div class="text-center">
<br>
<h1>Societies in IIT Mandi</h1>
<hr style="width: 15%; background-color: #000000;">
</div>
<br><br>
<div class="row slideanim">
<div class="container_image">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6"><a href="https://ias.ieee.org/" target="_blank">
<img src="img/IAS.png" style="width: 50%;"></a>
<br><br>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6"><br>
<p style="text-align: justify;">The <strong>IEEE Industry Applications Society</strong> is the IEEE
organization concerned with intellectual and empirical advancements in electrical and electronic
engineering applied to industry and commerce. It moreover discusses energy conservation methods and
the development of industrial technical standards. It organises seminars and activities to
disseminate technical knowledge to its members and keep them up to date on industry developments.
</p>
</div>
</div>
<hr style="width: 100%; opacity: .3; border-width: 0; height: 1.5px;">
<div class="row slideanim">
<div class="container_image">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6"><a href="https://www.ieee-ras.org/" target="_blank">
<img src="img/RAS.png" style="width: 50%; transform: translateY(25px);"></a>
<br><br><br>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<p style="text-align: justify;">The <strong>IEEE Robotics and Automation Society's</strong> activities
include scientific, literary, and educational pursuits. It aims to make advances in robotics and
automation engineering and science, including basic and practical research. This means, among other
things, that it promotes research into intelligent and adaptive systems in unstructured situations,
as well as the efficiency and dependability of systems in organised environments.</p>
</div>
</div>
<hr style="width: 100%; opacity: .3; border-width: 0; height: 1.5px;">
<div class="row slideanim">
<div class="container_image">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6"><a href="http://www.ieee-ies.org/" target="_blank">
<img src="img/IES.gif" style="width: 50%;"></a>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<p style="text-align: justify;">The <strong>IEEE Industrial Electronics Society</strong> encompasses a
wide variety of technological activities committed to the application of electronics and electrical
sciences to enhance industrial and manufacturing processes. The latest developments in intelligent
and computer control systems, robotics, factory communications and other technical stuff are all
addressed in these technical events. The Society's technical activities programme is constantly
updated to meet the demands of modern industry.</p>
</div>
</div>
<hr style="width: 100%; opacity: .3; border-width: 0; height: 1.5px;">
<div class="row slideanim">
<div class="container_image">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6"><a href="https://wie.ieee.org/" target="_blank">
<img src="img/wie.png" style="width: 40%;"></a>
<br>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<p style="text-align: justify;">The <strong>IEEE Women in Engineering</strong>(WIE) is a global leader
in altering the face of engineering. Its worldwide network of over 30,000 members including over 100
countries aims to advance women in technology at all stages of their lives and careers. It helps
women to build a strong social status and gain confidence in the field of technology. IEEE WIE
members form lifetime connections, gain significant mentors, and make an impact in the community.
</p>
</div>
</div>
<hr style="width: 100%; opacity: .3; border-width: 0; height: 1.5px; ">
<div class="row slideanim">
<div class="container_image">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<a href="https://www.ieee-pels.org/" target="_blank">
<img src="img/pels.png" style="width: 30%;"></a>
<br><br>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<p style="text-align: justify;">The <strong>IEEE Power Electronics Society</strong> has aided and led
the advancement of power electronics technology. The PELS Society is devoted to preserving the
crucial scientific and educational components of power electronics and its applications, as well as
keeping its members worldwide up to speed on cutting-edge technical breakthroughs and achievements
in power electronics research.</p>
</div>
</div>
<hr style="width: 100%; opacity: .3; border-width: 0; height: 1.5px;">
<div class="row slideanim">
<div class="container_image">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<a href="https://www.ieee-pes.org/" target="_blank">
<img src="img/pes.jpg" style="width: 50%;"></a>
<br><br>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6"> <br>
<p style="text-align: justify;">The <strong>IEEE Power & Energy Society</strong> The IEEE Power & Energy
Society is the world's biggest platform for exchanging the most recent technological breakthroughs
in the electric power business, producing standards and educating industry members and genral
public. Members of the Power & Energy Society are thought leaders in their fields, and they — as
well as their employers are benefited from their membership in this one-of-a-kind and remarkable
organisation.</p>
</div>
</div><br>
<hr style="width: 100%; opacity: .3; border-width: 0; height: 1.5px;">
<div class="row slideanim">
<div class="container_image">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<a href="https://sight.ieee.org/" target="_blank">
<img src="img/ieee_sight_logo.jpg" style="width: 50%;"></a>
<br><br>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<p style="text-align: justify;">The <strong>IEEE Special Interest Group on Humanitarian Technology
(SIGHT)</strong> The IEEE Special Interest Group on Humanitarian Technology (SIGHT) is a
programme of the Institute of Electrical and Electronics Engineers (IEEE) that was established by
the IEEE Humanitarian Activities Committee (HAC). IEEE SIGHT is a global network of groups comprised
of IEEE members and volunteers that use their technical talents and collaborate with their local
communities to discover and address local problems.
</p>
</div>
</div>
<br>
</div>
<!-- SOCIETIES END -->
<!-- Resources start -->
<div class="text-center" id="resource">
<br><br>
<h1>Resources</h1>
<hr style="width: 9%">
<br><br>
<div class="container text-center" id="members_here">
<div class="row">
<div class="container_image">
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
<a href="https://ieee-collabratec.ieee.org/" target="_blank"><img class="res_img"
src="img/ieeecollaboratec.png" width="70%"></a>
</div>
</div>
<div class="container_image">
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
<a href="http://yp.ieee.org/" target="_blank"> <img class="res_img_2" src="img/ieeeYP.png"
width="70%"></a>
</div>
</div>
<div class="container_image">
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4" class="resource_image">
<a href="https://ieeexplore.ieee.org/Xplore/home.jsp" target="_blank"> <img
src="img/ieeeXplore.png" class="res_img_3" width="70%"></a>
</div>
</div>
</div>
<div class="row">
<div class="resource_image">
<div class="col-sm-2 col-md-2 col-lg-2"></div>
</div>
<div class="container_image">
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
<a href="https://ieeetv.ieee.org/" target="_blank"> <img class="res_img" src="img/ieeeTV.jpg"
width="40%"></a>
</div>
</div>
<div class="container_image">
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
<a href="http://sites.ieee.org/vtools/" target="_blank"> <img class="res_img"
src="img/ieeevtools.png" width="40%"></a>
</div>
</div>
<div class="container_image">
<div class="col-sm-2 col-md-2 col-lg-2"> </div>
</div>
</div>
</div>
<br>
</div>
<style>
@media screen and (max-width:750px) {
.res_img {
padding-bottom: 10px;
}
.res_img_2 {
padding-bottom: 15px;
}
.res_img_3 {
padding-left: 5px;
}
}
</style>
<!-- Resources End -->
<!--Achievement Section-->
<div id="achievements">
<br><br>
<div class="container text-center">
<div id="band" class="text-center">
<h1>Achievements</h1>
<hr style="width: 6%">
</div>
<br><br>
<div class="row">
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
Outstanding Student Volunteer Award 2021
</h3>
<p>Mr. Rajesh M. Pindoriya was honoured with Outstanding Student Volunteer Award 2021 for
his diligent and remarkable efforts on behalf of the IEEE Student Branch at IIT Mandi.
</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
IAS CMD Humanitarian Contest 2021
</h3>
<p>For their project "Autotuned Ventilator: A Contactless Treatment Machine, particularly
for COVID-19 patients," Rishi Kant Thakur, Dr. Rajesh Pindoriya, and Dr. Rajeev Kumar
bagged second position.</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
IAS CMD Outstanding Chapter Award 2021
</h3>
<p>Under the guidance of Sachin Chauhan, the Indian Institute of Technology Mandi (IITM)
Joint IAS and PES Student Branch Chapter achieved the Outstanding Joint IAS Chapter
award.</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
Project Proposal rewarded by IEEE SIGHT Projects 2021
</h3>
<p> The project proposal captioned "Design & Development of Auto-tuned Ventilator: A
contactless treatment specifically for COVID-19 patients" by Rishi Kant Thakur, Dr.
Rajeev Kumar (Project Mentor), and Dr. Rajesh Pindoriya was acknowledged and honoured
with 5000 USD in the 2021 IEEE HAC/SIGHT Projects- Centered on COVID-19 Response Call
for Proposals.</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
Rishi Thakur's M.S. Thesis awarded with multiple grants in 2021.
</h3>
<p>The M.S. thesis proposal of Mr Rishi Kant Thakur's (S19004), under the guidance of Dr.
Rajeev Kumar, and another team member, Dr. Rajesh Pindoriya, bagged two more IEEE
awards. One from "IEEE Region 10 & IEEE HAC" captioned "Neoteric Ventilation (NEO) and a
second from "IEEE Region 10 SAC" captioned "Auto-tuned Ventilator and honoured with a
prize money of $500 USD.
</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="blog-item">
<div class="descr">
<div class="icon">
<i class="fas fa-award"></i>
</div>
<h3 class="title">
Secured first rank in IEEE Day Photo Contest held at ITI 2021
</h3>
<p>To increase awareness among the young student community, a workshop on renewable energy
resources was organized at the Industrial Training Institute (ITI) in Mandi, India. This
was a two-week workshop in which students learned and created a scaled-down prototype of
the many
project ideas that they proposed based on the theme renewable energy.
</p>
</div>
<div class="meta-tags">
</div>
</div>
</div>
</div>
<a style="justify-content: center;" href="achievements.html" class="btn">More..</a>
</div>
</div>
<br><br>
<!-- Achievement ends -->
<!--EVENTS START-->
<!-- <div id="events">
<br>
<div class="container text-center">
<div id="band" class="text-center">
<h1>Events</h1>
<hr style="width: 6%">
</div>
<br>
<div class="row slideanim">
<div class="col-sm-12">
<a href="upcomingEvents.html" target="_blank" style="color: white; text-decoration: none;">
<span class="fas fa-calendar-week logo-small"></span>
<h4><strong>Upcoming Events</strong></h4>
<p style="transform: translate(0px,-10px);">Click to learn more.</p>
</a>
</div>
</div>
<br>
<div class="row slideanim">
<div class="col-sm-3">
<a href="events2019.html" target="_blank" style="color: white; text-decoration: none;">
<span class="fas fa-calendar-check logo-small"></span>
<h4><strong>Events 2019</strong></h4>
</a>
</div>
<div class="col-sm-3">
<a href="events2018.html" target="_blank" style="color: white; text-decoration: none;">
<span class="fas fa-calendar-check logo-small"></span>
<h4><strong>Events 2018</strong></h4>
</a>
</div>
<div class="col-sm-3">
<a href="events2017.html" target="_blank" style="color: white; text-decoration: none;">
<span class="fas fa-calendar-check logo-small"></span>
<h4><strong>Events 2017</strong></h4>
</a>
</div>
<div class="col-sm-3">
<a href="events2016.html" target="_blank" style="color: white; text-decoration: none;">
<span class="fas fa-calendar-check logo-small"></span>
<h4><strong>Events 2016</strong></h4>
</a>
</div>
</div>
</div>
<br><br>
</div>
</div> -->
<!-- EVENTS END -->
<!--MEMBERS START-->
<div class="text-center" id="membershere">
<br><br>
<h1>Executive Council</h1>
<hr style="width: 12%">
<h3 style="font-family: Arial, Helvetica, sans-serif;color: #141a25d7;">IEEE Student Branch</h3><br>
<br>
<div class="container text-center" id="members_here">
<div class="row">
<div class="col-md-6 col-lg-6">
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-6">
<img class="img img-circle" src="img/student branch/Janani.webp" height="120px"
width="120px">
<p><strong> Shri Janani Senthil </strong></p>
<div style="line-height: 90%">
<p>Chairperson</p>
<p>Student Branch</p>
<ul class="social mb-0 list-inline mt-3">
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/janani-s-7b524a1bb/"
class="social-link" target="_blank"><i class="fab fa-linkedin-in"></i></a></li>
<li class="list-inline-item"><a href="mailto:janani7222@ieee.org"
class="social-link" target="_blank"><i class="far fa-envelope"></i></a></li>
</ul>
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-6">
<img class="img img-circle" src="img/student branch/Monika Mina.webp" height="120px" width="120px">
<p><strong> Monika </strong></p>
<div style="line-height: 90%">
<p>ViceChairperson</p>
<p>Student Branch</p>
<ul class="social mb-0 list-inline mt-3">
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/monika-mina-b587a0250" class="social-link"
target="_blank"><i class="fab fa-linkedin-in"></i></a></li>
<li class="list-inline-item"><a href="mailto:B21057@students.iitmandi.ac.in"
class="social-link" target="_blank"><i class="far fa-envelope"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6">
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-6">
<img class="img img-circle" src="img/student branch/Abhishek Singhal.jpg" height="120px"
width="120px">
<p><strong> Abhishek Singhal</strong></p>
<div style="line-height: 90%">
<p>Treasurer</p>
<p>Student Branch</p>
<ul class="social mb-0 list-inline mt-3">
<li class="list-inline-item"><a href="https://www.linkedin.com/in/abhishek-singhal-5786b9171"
class="social-link" target="_blank"><i class="fab fa-linkedin-in"></i></a></li>
<li class="list-inline-item"><a href="mailto:d21012@students.iitmandi.ac.in" class="social-link"
target="_blank"><i class="far fa-envelope"></i></a></li>
</ul>
<br>
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-6">
<img class="img img-circle" src="img/student branch/Hemant Chauhan.webp" height="120px" width="120px">
<p><strong> Hemant Chauhan </strong></p>
<div style="line-height: 90%">
<p>Secretary</p>
<p>Student Branch</p>
<ul class="social mb-0 list-inline mt-3">
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/hemant-chauhan-8614a921b"
class="social-link" target="_blank"><i class="fab fa-linkedin-in"></i></a></li>
<li class="list-inline-item"><a href="mailto:B20289@students.iitmandi.ac.in"
class="social-link" target="_blank"><i class="far fa-envelope"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<br><br>
<div class="row">
<div class="col-md-6 col-lg-6">