-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
1365 lines (1292 loc) · 53.2 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>
<title>IEEE DTU</title>
<meta charset="utf-8">
<meta property="og:type" content="website" />
<meta property='og:title' content='IEEE DTU || STUDENT CHAPTER' />
<meta property='og:image' content='https://ieeedtu.in/images/ieee.png' />
<meta property='og:description'
content='IEEE DTU Student Branch , under the aegis of IEEE Global, is the oldest student branch in Delhi Section with an illustrious history of over three decades.' />
<meta property='og:url' content='https://ieeedtu.in/' />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="./images/ieee.png" type="image">
<link href="https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900" rel="stylesheet">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/style.css">
<link href='./lib/main.css' rel='stylesheet' />
<script src='./lib/main.js'></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar">
<div class="container">
<a class="navbar-brand" href="index.html"><span>IEEE DTU</span></a>
<button class="navbar-toggler js-fh5co-nav-toggle fh5co-nav-toggle" type="button" data-toggle="collapse"
data-target="#ftco-nav" aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
<span class="oi oi-menu"></span> Menu
</button>
<div class="collapse navbar-collapse" id="ftco-nav">
<ul class="navbar-nav nav ml-auto">
<li class="nav-item"><a href="#" class="nav-link" data-nav-section="home"><span>Home</span></a></li>
<li class="nav-item"><a href="#" class="nav-link" data-nav-section="about"><span>About Us</span></a>
</li>
<li class="nav-item"><a href="#" class="nav-link"
data-nav-section="projects"><span>Events</span></a></li>
<li class="nav-item"><a href="#" class="nav-link" data-nav-section="team"><span>Council</span></a>
</li>
<li class="nav-item"><a href="#" class="nav-link"
data-nav-section="testimony"><span>Testimony</span></a></li>
<li class="nav-item"><a href="#" class="nav-link" data-nav-section="blog"><span>Echo</span></a></li>
<li class="nav-item"><a href="#" class="nav-link"
data-nav-section="contact"><span>Contact</span></a></li>
<!-- <li class="nav-item"><a href="https://vihaan.ieeedtu.in/" class="nav-link"
><span>Vihaan</span></a></li> -->
</ul>
</div>
</div>
</nav>
<section id="home" class="hero-wrap js-fullheight" style="background-image: url('images/bg_1.jpg');"
data-section="home">
<div class="overlay"></div>
<div class="container">
<div class="row no-gutters slider-text js-fullheight align-items-center justify-content-start"
data-scrollax-parent="true">
<div class="col-md-8 ftco-animate mt-5" data-scrollax=" properties: { translateY: '70%' }">
<p class="d-flex align-items-center"
data-scrollax="properties: { translateY: '30%', opacity: 1.6 }">
<!--<a href="https://vimeo.com/45830194" class="icon-video popup-vimeo d-flex justify-content-center align-items-center mr-3">
<span class="ion-ios-play play mr-2"></span>
<span class="watch">Watch Video</span>-->
</a>
</p>
<br>
<h1 class="mb-4" data-scrollax="properties: { translateY: '30%', opacity: 1.6 }">IEEE DTU Student
Branch</h1>
<p class="mb-4" data-scrollax="properties: { translateY: '30%', opacity: 1.6 }">A world of limitless
possiblities</p>
<form action="https://drive.google.com/file/d/1SFYDNSe8O7akR5QH7WZqsFnQp9XTpsj4/view">
<button class="btn8" >Reveal ECHO <i class="fa fa-arrow-right" aria-hidden="true"></i></button>
</form>
<!--<div class="col-md-7 heading-section text-center ftco-animate">
<a class="example_f"><button onclick="myFunction()">Light the Lamp</button></a>
</div>-->
</div>
</div>
</div>
</div>
</section>
<script>
function myFunction() {
alert('Thank You');
}
</script>
<section id="ieee-chapters" class="ftco-section ftco-services ftco-no-pt">
<div class="container">
<div class="row services-section">
<div class="col-md-4 d-flex align-self-stretch ftco-animate">
<div class="media block-6 services text-center d-block">
<div class="icon"><span><img src="images/cs.png"></span></div>
<div class="media-body">
<h3 class="heading mb-3">IEEE DTU CS Chapter</h3>
<p style="text-align: justify;">The IEEE Computer Society is the premier source for
information, inspiration, and
collaboration in Computer Science and Engineering.
IEEE DTU has become affiliated to the IEEE Computer Society and has established its
presence in the ever-expanding world of Computer Science.
IEEE DTU Computer Society has organized many flagship events like Microhacks,
IEEEXtreme, Vihaan and Bulls N' Bears. </p>
<p><a href="#" class="btn btn-primary"></a></p>
</div>
</div>
</div>
<div class="col-md-4 d-flex align-self-stretch ftco-animate">
<div class="media block-6 services text-center d-block">
<div class="icon"><span><img src="images/pes.png"></span>
<!--<span class="flaticon-compass-symbol"></span>-->
</div>
<div class="media-body">
<h3 class="heading mb-3">IEEE DTU PES-IAS Chapter</h3>
<p style="text-align: justify;">The Power & Energy Society (PEA) provides the world's
largest forum for sharing latest in
technological developments in the electric power industry,
for developing standards that guide the development and construction of equipment and
systems,
and for educating members of the industry and the general public.
Members the PES are leaders in this field, and the members gain substantial benefits.
</p>
<p><a href="#" class="btn btn-primary"></a></p>
</div>
</div>
</div>
<div class="col-md-4 d-flex align-self-stretch ftco-animate">
<div class="media block-6 services text-center d-block">
<div class="icon"><span><img src="images/wie.png"></span></div>
<div class="media-body">
<h3 class="heading mb-3">IEEE DTU WIE Chapter</h3>
<p style="text-align: justify;"> Women in Engineering (WIE) is a global network of IEEE
members a devoted to promoting
the advancement of women in science and retention of disciplines globally.
The vision it holds is that of a vibrant community of women and men collectively using
their diverse talents of humanity.
In lieu of the certain horrific events in India, IEEE DTU WIE hosted a webinar on
Workplace Environment an being none other than Dr. Sharad Kumari</p>
<p><a href="#" class="btn btn-primary"></a></p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="faculty-in-charge" class="ftco-section bg-light" data-section="blog">
<div class="container">
<div class="row justify-content-center mb-5 pb-5">
<div class="col-md-7 heading-section text-center ftco-animate">
<span class="subheading">Support System</span>
<h2 class="mb-4">Meet our faculty Advisors</h2>
</div>
</div>
<div class="row ftco-animate justify-content-center mb-5">
<div class="col-md-12 d-flex align-items-center">
<div class="carousel-testimony owl-carousel">
<div class="item">
<div class="testimony-wrap d-flex align-items-stretch">
<div class="user-img d-flex align-self-stretch"
style="background-image: url(images/Dr.\ J.\ Panda.jpeg)">
</div>
<div class="text d-flex align-items-center">
<div>
<div class="icon-quote">
<span class="icon-quote-left"></span>
</div>
<p class="mb-4">
IEEE DTU’s core purpose is to foster technological innovation and
excellence for the benefit of humanity.
<br>
IEEE DTU and its members inspire a global community through it’s
highly cited publications, conferences, technology standards, and
professional and educational activities. We aim to inspire and motivate
the genius, to blossom into a societal revolution.
<br>
IEEE DTU will be essential to the global technical
community and to technical professionals everywhere, and be universally
recognized for the contributions of technology and of technical
professionals in improving global conditions.</p>
<p class="name">Prof. Jeebananda Panda</p>
<span class="position">Branch Councellor</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row d-flex">
<div class="col-md-4 d-flex ftco-animate ">
<div class="blog-entry justify-content-end">
<a href="#faculty-in-charge" class="block-20" style="background-image: url('images/FacultyAdvisors/Rajni\ Jindal\ -\ IEEE\ CS.jpg');">
</a>
<div class="text mt-3 float-right d-block">
<h3 class="heading"><a href="#faculty-in-charge">Prof. Rajni Jindal</a></h3>
<p>HOD, Computer Engineering Department DTU<br>IEEE DTU CS chapter faculty advisor</p>
<div class="d-flex align-items-center mt-4 meta">
<p class="mb-0"><a href="#faculty-in-charge" class="btn btn-secondary">Read More <span class="ion-ios-arrow-round-forward"></span></a></p>
</div>
</div>
</div>
</div>
<div class="col-md-4 d-flex ftco-animate">
<div class="blog-entry justify-content-end">
<a href="#faculty-in-charge" class="block-20" style="background-image: url('images/FacultyAdvisors/Rachna\ Garg\ -\ IEEE\ PES_IAS.jpeg');">
</a>
<div class="text mt-3 float-right d-block">
<h3 class="heading"><a href="#faculty-in-charge">Prof. Rachna Garg</a></h3>
<p>Chair, IEEE Delhi Section<br>
Faculty advisor, IEEE DTU PES-IAS student Chapter</p>
<div class="d-flex align-items-center mt-4 meta">
<p class="mb-0"><a href="#faculty-in-charge" class="btn btn-secondary">Read More <span class="ion-ios-arrow-round-forward"></span></a></p>
</div>
</div>
</div>
</div>
<div class="col-md-4 d-flex ftco-animate">
<div class="blog-entry">
<a href="#faculty-in-charge" class="block-20" style="background-image: url('images/FacultyAdvisors/S\ Indu\ -\ IEEE\ WIE.jpg');">
</a>
<div class="text mt-3 float-right d-block">
<h3 class="heading"><a href="#faculty-in-charge">Prof. S Indu</a></h3>
<p>Dean Student Welfare
<br>
IEEE DTU WIE faculty advisor</p>
<div class="d-flex align-items-center mt-4 meta">
<p class="mb-0"><a href="#faculty-in-charge" class="btn btn-secondary">Read More <span class="ion-ios-arrow-round-forward"></span></a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="ieee" class="ftco-counter img ftco-section ftco-no-pt ftco-no-pb" id="section-counter"
data-section="about">
<div class="container">
<div class="row d-flex">
<div class="col-md-6 col-lg-4 d-flex">
<!--<iframe width="100%" height="850vh" src="https://forms.gle/GJJZLjdAxGvn3DUo8"></iframe>-->
<div class="img d-flex align-self-stretch align-items-center"
style="background-image:url(images/about.jpg);">-->
<div class="request-quote py-5">
<div class="py-2">
<span class="subheading">Be Part of the IEEE-DTU Family</span>
<h3>Join Now</h3>
</div>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSfqmxv8OrP1wmhgNrUtnZSMKzlLI8WmtxibAGmVqqd8YHjgJQ/viewform" width="350" height="932" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
<!-- <form action="/" class="request-form ftco-animate" id="registeration-form" method="POST">
<div class="form-group">
<input type="text" class="form-control" placeholder="First Name" id="name" required>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Last Name" id="lastname"
required>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Email" id="email" required>
</div>
<div class="form-group">
<div class="form-field">
<div class="select-wrap">
<div class="icon-arr"><span class="ion-ios-arrow-down"></span></div>
<select name="" id="year" class="form-control" required>
<option value="">Select Your Year of Study</option>
<option value="1" style="color:black">First Year</option>
<option value="2" style="color:black">Second Year</option>
<option value="3" style="color:black">Third Year</option>
<option value="4" style="color:black">Fourth Year</option>
</select>
</div>
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Phone" id="phone" required>
</div>
<div class="form-group">
<textarea name="" id="message" cols="30" rows="2" class="form-control"
placeholder="Message"></textarea>
</div>
<div class="form-group">
<input type="submit" value="Join Now" class="btn btn-secondary py-3 px-4">
</div>
</form> -->
</div>
</div>
</div>
<div class="col-md-6 col-lg-8 pl-lg-5 py-5">
<div class="row justify-content-start pb-3">
<div class="col-md-12 heading-section ftco-animate">
<span class="subheading">Welcome</span>
<h2 class="mb-4">About IEEE-DTU</h2>
<p>IEEE DTU Student Branch , under the aegis of IEEE Global, is the oldest student branch in
Delhi Section with an illustrious history of over three decades.</p>
<p>Under the invaluable guidance of Dr. J. Panda,
IEEE DTU has emerged as one of the most active and innovative student branches in India.
IEEE DTU organizes a plethora of events around the year such as
<strong>TECHWEEK</strong>, <strong>MICROHACK</strong> and the annual technical festival
<strong>TROIKA</strong> to instil a scientific temperament in students and to cater to
the needs of their inquisitive nature.
IEEE DTU is also renowned for its publications- ECHO, a magazine for freshers, IOTA, the
annual technical magazine, TRIGGER, the TROIKA souvenir, and The Troika Times.
In the year 2012, one of the commendable feats of IEEE DTU Student Branch was the
organizing of ISSET (International Symposium on Standards in Engineering & Technology),
which provided a platform for student researchers, besides academic and professional
experts,
to share and exchange their ideas.</p>
<p>IEEE DTU student members get a chance to be in touch with the latest technical
information, research and career opportunities.
Not only do they take part in several events, but also get a chance to organize them
with their young and capable hands. “Toil to attain thy heights”.
By following this mantra with heart in work and mind in place, and feet firmly on
ground, IEEE DTU is poised for a quantum leap forward.</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 justify-content-center counter-wrap ftco-animate d-flex">
<div class="block-18 text-center p-4 mb-4 align-self-stretch d-flex">
<div class="text">
<strong class="number" data-number="30">0</strong>
<span>Years of existence</span>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 justify-content-center counter-wrap ftco-animate d-flex">
<div class="block-18 text-center py-4 px-3 mb-4 align-self-stretch d-flex">
<div class="text">
<strong class="number" data-number="1000">0</strong>
<span>IEEE-DTU Alumni</span>
</div>
</div>
</div>
<!--<div class="col-md-6 col-lg-3 justify-content-center counter-wrap ftco-animate d-flex">
<div class="block-18 text-center py-4 px-3 mb-4 align-self-stretch d-flex">
<div class="text">
<strong class="number" data-number="100">0</strong>
<span>Our Architect</span>
</div>
</div>
</div>-->
<div class="col-md-6 col-lg-3 justify-content-center counter-wrap ftco-animate d-flex">
<div class="block-18 text-center py-4 px-3 mb-4 align-self-stretch d-flex">
<div class="text">
<strong class="number" data-number="2000">0</strong>
<span>IEEE-DTU family</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<br><br><br>
<section id="Magazine" class="ftco-section bg-light" data-section="blog">
<div class="container">
<div class="row justify-content-center mb-5 pb-5">
<div class="col-md-7 heading-section text-center ftco-animate">
<span class="subheading">IEEE.ORG</span>
<h2 class="mb-4">Login to your IEEE account.</h2>
</div>
<div class="button_cont">
<a class="example_f" href="https://www.ieee.org" target="_blank" rel="nofollow">
<span>Login to your account</a></div>
</div>
</section>
<section id="events" class="ftco-section ftco-project " data-section="projects">
<div class="container-fluid px-md-5">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<span class="subheading">Fun & Activities</span>
<h2 class="mb-4">Our Events</h2>
<p>Some of the events conducted by IEEE DTU throughout the year</p>
</div>
</div>
<div class="row">
<div class=" col-md-12 container mt-2 mb-2">
<div class="row justify-content-center pb-5">
<div class="col-md-7 heading-section text-center ftco-animate">
<a class="example_f" href="https://vihaan.ieeedtu.in/" target="_blank" rel="nofollow">
<span>VIHAAN 2021</a></div>
</div>
</div>
</div>
<div class="col-md-12 testimonial">
<div class="carousel-project owl-carousel">
<div class="item">
<div class="project">
<div class="img">
<img src="./images/events/MIST - DATE ANNOUNCEMENT.jpg" class="img-fluid" alt="Colorlib Template">
<a href="./images/events/MIST - DATE ANNOUNCEMENT.jpg"
class="icon image-popup d-flex justify-content-center align-items-center">
<span class="icon-expand"></span>
</a>
</div>
<div class="text px-4">
<h3><a href="#">MIST</a></h3>
<span>The cryptic hunt</span>
</div>
</div>
</div>
<div class="item">
<div class="project">
<div class="img">
<img src="images/events/Orientation Poster IEEE DTU.jpg" class="img-fluid" alt="Colorlib Template">
<a href="images/events/Orientation Poster IEEE DTU.jpg"
class="icon image-popup d-flex justify-content-center align-items-center">
<span class="icon-expand"></span>
</a>
</div>
<div class="text px-4">
<h3><a href="#">Welcome to IEEE-DTU</a></h3>
<span>Explore the oldest student society of DTU </span>
</div>
</div>
</div>
<div class="item">
<div class="project">
<div class="img">
<img src="images/events/Code Prix.png" class="img-fluid" alt="Colorlib Template">
<a href="images/events/Code Prix.png"
class="icon image-popup d-flex justify-content-center align-items-center">
<span class="icon-expand"></span>
</a>
</div>
<div class="text px-4">
<h3><a href="#">Code Prix</a></h3>
<span>Women's day special</span>
</div>
</div>
</div>
<div class="item">
<div class="project">
<div class="img">
<img src="images/events/Release Poster.png" class="img-fluid" alt="Colorlib Template">
<a href="images/events/Release Poster.png"
class="icon image-popup d-flex justify-content-center align-items-center">
<span class="icon-expand"></span>
</a>
</div>
<div class="text px-4">
<h3><a href="#">Cross Woc</a></h3>
<span>An online open source event</span>
</div>
</div>
</div>
<div class="item">
<div class="project">
<div class="img">
<img src="images/events/Techweek_21.png" class="img-fluid" alt="Colorlib Template">
<a href="images/events/Techweek_21.png"
class="icon image-popup d-flex justify-content-center align-items-center">
<span class="icon-expand"></span>
</a>
</div>
<div class="text px-4">
<h3><a href="#">Techweek 21</a></h3>
<span>1 week of celebrating Tech</span>
</div>
</div>
</div>
<div class="item">
<div class="project">
<div class="img">
<img src="images/trips.jpg" class="img-fluid" alt="Colorlib Template">
<a href="images/trips.jpg"
class="icon image-popup d-flex justify-content-center align-items-center">
<span class="icon-expand"></span>
</a>
</div>
<div class="text px-4">
<h3><a href="#">Fun Activities</a></h3>
<span>Trips & Nightouts</span>
</div>
</div>
</div>
<div class="item">
<div class="project">
<div class="img">
<img src="images/wie_event.jpg" class="img-fluid" alt="Colorlib Template">
<a href="images/wie_event.jpg"
class="icon image-popup d-flex justify-content-center align-items-center">
<span class="icon-expand"></span>
</a>
</div>
<div class="text px-4">
<h3><a href="#">Webinar by Dr. Sharad Kumari</a></h3>
<span>Workplace Environment & Laws for Women</span>
</div>
</div>
</div>
<div class="item">
<div class="project">
<div class="img">
<img src="images/events/VIHAAN Registration Open.png" class="img-fluid" alt="Colorlib Template">
<a href="images/events/VIHAAN Registration Open.png"
class="icon image-popup d-flex justify-content-center align-items-center">
<span class="icon-expand"></span>
</a>
</div>
<div class="text px-4">
<h3><a href="#">Vihaan</a></h3>
<span>The Hackathon</span>
</div>
</div>
</div>
<div class="item">
<div class="project">
<div class="img">
<img src="images/hangout.jpg" class="img-fluid" alt="Colorlib Template">
<a href="images/hangout.jpg"
class="icon image-popup d-flex justify-content-center align-items-center">
<span class="icon-expand"></span>
</a>
</div>
<div class="text px-4">
<h3><a href="#">IEEE Parties & Hangouts</a></h3>
<span>The real fun begins here</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="width: 30%; margin: 0 auto; padding: 20px;">
<br><br><br>
<h2 class="mb-4"><a href="outing.html">See how we celebrate our Fun times >></a></h2>
</div>
</section>
<section id="council" class="ftco-section" data-section="team">
<div class="container-fluid p-0">
<div class="row no-gutters justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<span class="subheading">The Team</span>
<h2 class="mb-4">IEEE-DTU Council</h2>
<p>Meet the team behind the largest student society of IEEE Delhi section</p>
</div>
</div>
<div class="row no-gutters">
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Ritwik.PNG);">
</div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">Chairperson</span>
<h3 class="mb-4">Ritwik Ranjan</h3>
<div class="faded">
<p>I am an ambitious workaholic, but apart from that, pretty simple person.</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a
href="https://www.linkedin.com/in/ranjanritwik/"><span
class="icon-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Shubham.jpeg);">
</div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">Vice Chairperson</span>
<h3 class="mb-4">Shubham Kumar</h3>
<div class="faded">
<p>I am an ambitious workaholic, but apart from that, pretty simple person.</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a
href="https://www.linkedin.com/in/shubham-kumar-83b39a168/"><span
class="icon-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Arun.PNG);">
</div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">General Secretary</span>
<h3 class="mb-4">Arun Kumar</h3>
<div class="faded">
<p>I am a person who wants to follow my passion. Likes to push myself for good
whenever possible.</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a
href="https://www.linkedin.com/in/arunkumar046/"><span
class="icon-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Chitra.png);"></div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">Treasurer</span>
<h3 class="mb-4">Chitra Singla</h3>
<div class="faded">
<p>I am an ambitious workaholic, but apart from that, pretty simple person.</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a href="http://linkedin.com/in/chitrasingla/"
target="blank"><span class="icon-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Sonal.jpg);"></div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">Chairperson - Computer Society</span>
<h3 class="mb-4">Sonal Bera</h3>
<div class="faded">
<p>A Techie with a swag!
Always helpful and chill...</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a
href="https://www.linkedin.com/in/sonalbera/"><span
class="icon-linkedin"></span></a></li>
<li class="ftco-animate"><a href="instagram.com/sonal_sb"><span
class="icon-instagram"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Mridul.jpg);"></div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">Joint Secretary</span>
<h3 class="mb-4">Mridul Gupta</h3>
<div class="faded">
<p>Life is like a chocolate box. If it gives you lemon make lemonade, sell it and buy chocolates</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a href="https://www.linkedin.com/in/thisismrids/"
target="blank"><span class="icon-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Shivam1.jpg);">
</div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">Chairperson - Power and Energy Society</span>
<h3 class="mb-4">Shivam Shaurya</h3>
<div class="faded">
<p>Likes to push myself for good
whenever possible</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a
href="https://www.linkedin.com/in/shivam-in/"><span
class="icon-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Manali.jpg);">
</div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">Chairperson - Women In Engineering</span>
<h3 class="mb-4">Manali Biswas</h3>
<div class="faded">
<p>I am an ambitious workaholic, but apart from that, pretty simple person.</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a href="https://www.linkedin.com/in/manali-biswas/"><span
class="icon-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Anshul.jpeg);">
</div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">HEAD - Corporate Relations & Affairs</span>
<h3 class="mb-4">Anshul Shroff</h3>
<div class="faded">
<p>I am a person who wants to follow my passion. Likes to push myself for good</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a
href="https://www.linkedin.com/in/ranjanritwik/"><span
class="icon-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Kirti.jpg);">
</div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">VICE CHAIRPERSON - COMPUTER SOCIETY</span>
<h3 class="mb-4">Kirti Dabas</h3>
<div class="faded">
<p>I am an ambitious workaholic, but apart from that, pretty simple person.</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a
href="https://www.linkedin.com/in/shubham-kumar-83b39a168/"><span
class="icon-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Abhishek.jpeg);">
</div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">VICE CHAIRPERSON - POWER AND ENERGY SOCIETY</span>
<h3 class="mb-4">Abhishek Sethi</h3>
<div class="faded">
<p>I am a person who wants to follow my passion. Likes to push myself for good
whenever possible.</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a
href="https://www.linkedin.com/in/arunkumar046/"><span
class="icon-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="staff">
<div class="img-wrap d-flex align-items-stretch">
<div class="img align-self-stretch" style="background-image: url(images/Mayank.jpeg);"></div>
</div>
<div class="text d-flex align-items-center pt-3 text-center">
<div>
<span class="position mb-2">VICE CHAIRPERSON - WOMEN IN ENGINEERING</span>
<h3 class="mb-4">Mayank Kumar Jarwal</h3>
<div class="faded">
<p>I am an ambitious workaholic, but apart from that, pretty simple person.</p>
<ul class="ftco-social text-center">
<li class="ftco-animate"><a href="https://www.linkedin.com/in/chitrasingla/"
target="blank"><span class="icon-linkedin"></span></a></li>
<li class="ftco-animate"><a href="http://linkedin.com/in/chitrasingla/"
target="blank"><span class="icon-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="testimony" class="testimony-section " data-section="testimony">
<div class="container">
<div class="row no-gutters justify-content-center pb-5 mt-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<span class="subheading">Proud To Present</span>
<h2 class="mb-4">Testimonials</h2>
</div>
</div>
<div class="row ftco-animate justify-content-center">
<div class="col-md-12 d-flex align-items-center">
<div class="carousel-testimony owl-carousel">
<div class="item">
<div class="testimony-wrap d-flex align-items-stretch">
<div class="user-img d-flex align-self-stretch"
style="background-image: url(images/Achievements/Addy\ Sir.jpeg)">
</div>
<div class="text d-flex align-items-center">
<div>
<div class="icon-quote">
<span class="icon-quote-left"></span>
</div>
<p class="mb-4">
Published paper in Springer Booklet - Computation of Hopf Bifurcation points for
Magnetic Levitation System
<br>
Published in IEEE Xplore - Bifurcation Curves for Electrical DC Motors.
<br>
Awarded J.K. Pal Memorial Award, 2020 and Outstanding Student Volunteer Award,
2019 by IEEE Delhi Section Award Committee.
</p>
<p class="name">Aditya Verma</p>
<span class="position">Research Achievement</span>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap d-flex align-items-stretch">
<div class="user-img d-flex align-self-stretch"
style="background-image: url(images/Sonal.jpg)">
</div>
<div class="text d-flex align-items-center">
<div>
<div class="icon-quote">
<span class="icon-quote-left"></span>
</div>
<p class="mb-4">P.M. Foundation Fellowship –
Awarded the P.M.Foundation fellowship award for securing the top rank in
GCC(Gulf Co-Operation Council) among the 10000+ participating candidates in the P.M Foundation
Talent Search and being the only 1 student to do so from Kuwait.</p>
<p class="name">Sonal Bera</p>
<span class="position">P.M Fellowship Awardee</span>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap d-flex align-items-stretch">
<div class="user-img d-flex align-self-stretch"
style="background-image: url(images/Achievements/shivam_kumar.jpeg)">
</div>
<div class="text d-flex align-items-center">
<div>
<div class="icon-quote">
<span class="icon-quote-left"></span>
</div>
<p class="mb-4">
I can undoubtedly declare that the Smart India Hackathon 2020 was a life changing experience for all of us,
and it could be possible only because of IEEE.
It gave us the opportunity to work with excellent mentors, on actual industrial problems.
Being an IEEE member provided us the required knowledge to build the full-stack proj
and it also enabled us to learn and imbibe various associated skills like team bonding, management, solving the real-time issues and leadership.
Each one of us worked to our full potential and the final result was indeed blissful.</p>
<p class="name">Shivam Kumar</p>
<span class="position">Smart India Hackathon </span>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap d-flex align-items-stretch">
<div class="user-img d-flex align-self-stretch"
style="background-image: url(images/Achievements/IMG_20191019_172717_084\ -\ Harshit\ Gupta.jpg)">
</div>
<div class="text d-flex align-items-center">
<div>
<div class="icon-quote">
<span class="icon-quote-left"></span>
</div>
<p class="mb-4">Selected for MITACS Globalink Research Internship
at Ryerson University, Toronto, Canada</p>
<p class="name">Harshit Gupta</p>
<span class="position">University Offer</span>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap d-flex align-items-stretch">
<div class="user-img d-flex align-self-stretch"
style="background-image: url(images/Achievements/shreya.png)">
</div>
<div class="text d-flex align-items-center">
<div>
<div class="icon-quote">
<span class="icon-quote-left"></span>
</div>
<p class="mb-4">My journey with IEEE started in 2013 and I have been a part of IEEE for four years up until I graduated.
I dabbled with a lot of things in IEEE such as programming, website designing,
LFRs, Mac-Bots, publications, corporate affairs and so on. That's where I found my calling and built a career around it.
Through IEEE I learnt a lot of things such as how to talk to people.
I met the best set of people including seniors who inspired and guided me, my batchmates who stood with me, and juniors who looked up to me.
I gained a lot of technical experience from working on IEEE projects such as Troika and other fests. But more than that, I gained friends.
I gained a way to talk to people, give interviews, ask questions and make contacts, which that is something that takes you a long way in life,
and IEEE was a major contributing factor in everything.
I am where I am because of all my experiences as an IEEE member, being with my friends and coworkers. I really hope that a few years down the line,
you all will be the ones encouraging more juniors with your journey as an IEEE member.</p>
<p class="name">Shreya</p>
<span class="position">University of Southern California</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="width: 30%; margin: 0 auto; padding: 20px;">
<br><br><br>
<h2 class="mb-4"><a href="testimony.html">More testimonials >></a></h2>
</div>