-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex copy.html
1348 lines (1235 loc) · 78.1 KB
/
index copy.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 class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>IEEE DTU</title>
<meta name="description" content="Created with ❤️ by IEEE DTU ">
<meta name="author" content="Pratham Upadhyay">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <script defer src="./js/jquery.js"></script>
<script defer src="./js/popper.js"></script>
<script defer src="./js/bootstrap.js"></script> -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<script defer src="./component/form.js"></script>
<link rel="icon" href="./images/IEEE_DTU_Logo.png" type="image/x-icon">
</head>
<body id="top">
<header class="s-header">
<div class="header-logo">
<a style="padding-top: 30px;" class="site-logo" href="#home">
<img src="./images/Newlogo.png" alt="Homepage">
</a>
</div>
<nav class="header-nav">
<a href="#0" class="header-nav__close" title="close"><span>Close</span></a>
<div class="header-nav__content">
<ul class="header-nav__list">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About Us</a></li>
<li><a class="smoothscroll" href="#faculty" title="about">Faculty Advisor</a></li>
<li><a class="smoothscroll" href="#services" title="about">Chapters</a></li>
<li><a class="smoothscroll" href="#clients" title="services">Events</a></li>
<li><a class="smoothscroll" href="#testinomials" title="clients">Testinomials</a></li>
<li><a class="smoothscroll" href="#council" title="councils">Council</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">Contact</a></li>
</ul>
<ul class="header-nav__social">
<li>
<a href="https://www.facebook.com/ieeedtu"><i class="fa-brands fa-facebook-f"></i></a>
</li>
<li>
<a href="https://twitter.com/dtu_ieee"><i class="fa-brands fa-x-twitter"></i></a>
</li>
<li>
<a href="https://www.instagram.com/ieee.dtu/"><i class="fa-brands fa-instagram"></i></a>
</li>
</ul>
</div>
</nav>
<a class="header-menu-toggle" href="#0">
<span class="header-menu-text">Menu</span>
<span class="header-menu-icon"></span>
</a>
</header>
<section id="home" class="s-home target-section" data-parallax="scroll">
<div class="overlay"></div>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h3 style="color: #70A6E3;">Welcome to</h3>
<h1>
IEEE DTU Student Branch<br>
</h1>
<h3 style="color: #70A6E3;">A world of limitless Possiblities</h3>
<div class="home-content__buttons">
<a href="#contact" class="smoothscroll btn btn--stroke">
Contact Us
</a>
<a href="#about" class="smoothscroll btn btn--stroke">
More About Us
</a>
</div>
</div>
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
<span>Scroll</span>
</a>
</div>
<div class="home-content__line"></div>
</div>
<ul class="home-social">
<li>
<a href="https://www.facebook.com/ieeedtu"><i class="fa-brands fa-facebook-f" aria-hidden="true"></i><span>Facebook</span></a>
</li>
<li>
<a href="https://twitter.com/dtu_ieee"><i class="fa-brands fa-x-twitter" aria-hidden="true"></i><span>Twiiter</span></a>
</li>
<li>
<a href="https://www.instagram.com/ieee.dtu/"><i class="fa-brands fa-instagram" aria-hidden="true"></i><span>Instagram</span></a>
</li>
</ul>
</section>
<section id='about' class="s-about">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<!-- <h5 class="subhead subhead--dark" style="color: white;">Welcome</h5> -->
<h4 class="display-1 display-1--light"
style=" color: white; font-family: monospace;">ABOUT IEEE DTU</h4>
</div>
</div>
<div class="grid-container">
<div class="grid-item">
<div class="row about-desc" data-aos="fade-up">
<div class="col-full" style="color: whitesmoke; font-family: sans-serif;">
<br>
<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.
<br><br>
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 TECHWEEK, MICROHACK and the annual technical festival TROIKA 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.
<br><br>
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>
<div class="grid-item">
<br>
<img src="./images/IEEE23.jpg">
<br><br>
<img src="./images/[email protected]">
</div>
</div>
<div class="row about-stats stats block-1-2 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block stats__col ">
<div><span class="stats__count">40</span><span class="stats__plus">+</span></div>
<h5 style="color: #70A6E3;">YEAR OF EXISTENCE</h5>
</div>
<div class="col-block stats__col">
<div><span class="stats__count">2053</span><span class="stats__plus">+</span></div>
<h5 style="color: #70A6E3;">IEEE DTU ALUMNI</h5>
</div>
</div>
</section>
<section class="form" style="background-color: white; padding: 20px">
<br><br>
<div class="grid-container_5">
<div class="grid-item_5" style="border-right: black solid;">
<div class="py-2">
<span style="font-size: large; color:blue; font-weight: bold; text-shadow: gray 5px -5px 30px;">Be Part of the IEEE-DTU Family</span>
<h3 style="color: black; margin: 10px; padding: 0%; ">Join Now</h3>
<br>
</div>
<iframe src="https://forms.gle/u164tfiTynR6oChs9" width="450" height="932" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<div class="grid-item_5">
<div class="row section-header has-bottom-sep aos-init aos-animate" data-aos="fade-up">
<div class="col-full">
<h5 class="subhead subhead--dark" style="color: darkslateblue; font-size: xx-large;">Benefits</h5>
<h4 class="display-1 display-1--light" style=" color: #70A6E3; font-family:monospace; text-shadow: gray 5px -5px 30px; font-size: larger;">OF JOINING IEEE DTU</h4>
</div>
</div>
<p style="color: black; font-size:large; padding: 30px; text-align: justify;">
IEEE membership is an identity in itself. This includes invites to International conferences, journals, and year-round Seminars and Workshops.
The members get special discounts on electronic devices and workshops. Competitions and contests like IEEE Xtreme are a direct opportunity to compete with the
stalwarts of their fields. leee.org's email ID gives you a sense of belongingness in the outside world and opens up a lot of opportunities.
<br><br>
IEEE members enjoy reduced rates on many proprietary products and services including IEEE books and eBooks, journals and articles, conferences and proceedings,
standards, society memberships, and continuing education courses. In addition, members have access to a variety of affinity programs that offer savings.
The IEEE Xplore Library offers a student member access to the ultimate collection of technical periodicals and conference publications at no additional cost.
The latest research from 37 peer-reviewed magazines and journals, covering the whole spectrum of computing and if that wasn't enough to captivate your
interest 700,000 documents from more than 300,000 content experts covering virtually every computing topic. Excited enough? Well, these were just the perks
of being a member of IEEE Let's talk about the additional perks of IEEE DTU. Let's just say, it can't be expressed on a tiny page like this. But still, am gonna try.
<br><br>
Ever wondered to participate in Robo wars and Robo roces. Did it ever occur to you, how to build one of those drones? Worry not, we have you covered!
Becoming a member invites you to be a part of the family of great minds, each a master of his own field. who, in the due course of time would become your mentors.
You will also get the chance to unleash your creativity through technology and innovate beyond limits through our annual hackathon Vihaan. We work using the concept
of SIGS (Special Interest Groups) and take classes for you after compus hours and help you grow. Be it the field of Al and ML, or if you want to learn Arduino, or
if you have a knack for designing, be it web or 30 Modelling. You can't stop exploring that is a guarantee we provide on our behalf.
<br><br>
This is the only society of DTU that takes you on a trip after the success of its event. The Techfest! In the nascency of your college years,
you get to manage great events, build trocks for the Robo races and wars, and that too on the beautiful OAT with moonlight shimmering down your face.
Bliss! EXPLORATION, CURIOSITY, AND A DESIRE TO GROW, THAT'S ALL WE ASK.
</p>
</div>
</div>
</section>
<section id="faculty" class="faculty">
<br> <br>
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h5 class="subhead subhead--dark" style="color: darkblue;">SUPPORT SYSTEM</h5>
<h4 class="display-1 display-1--light"
style=" color: black; font-weight: bolder; font-family: Georgia, 'Times New Roman', Times, serif; text-shadow: white 5px 5px 10px;">
Meet our faculty Advisors</h4>
</div>
</div>
<div class="grid-container_3">
<div class="grid-item_3">
<br><br>
<img style="border: black solid; padding:1px;" width="300" src="./images/JPSIR.png">
</div>
<div class="grid-item_3"
style="text-align: justify; color:grey; font-size: larger; font-weight: bolder; font-family:Georgia, 'Times New Roman', Times, serif;">
<br>
<p style="padding: 0px 40px 0px 40px">
IEEE DTU’s core purpose is to foster technological innovation and
excellence for the benefit of humanity.
</p>
<p style="padding: 0px 40px 0px 40px">
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.
</p>
<p style="padding: 0px 40px 0px 40px">
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
style="color:darkblue; font-family:Georgia, 'Times New Roman', Times, serif; padding: 0px 40px 0px 40px">
Prof. Jeebananda Panda
</p>
<p style="padding: 0px 40px 0px 40px">Branch Councellor</p>
</div>
</div>
<div class="row about-stats stats block-1-3 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block stats__col ">
<img src="./images/imgonline-com-ua-resize-cpifk7tKRt.jpg">
<div style="text-align: center; color:darkblue; font-weight: bold; ">Prof. Rahul Kataria</div>
<div style="color: black;">Professor, Computer Engineering <br> Department DTU, IEEE DTU, CS chapter <br>
faculty advisor</div>
</div>
<div class="col-block stats__col">
<img src="./images/rachna.png">
<div style="text-align: center; color:darkblue; font-weight: bold; ">Prof. Rachna Garg</div>
<div style="color: black;">Chair, IEEE Delhi Section <br>
Faculty advisor, IEEE DTU PES-IAS <br> Student Chapter</div>
</div>
<div class="col-block stats__col">
<img defer src="./images/imgonline-com-ua-resize-8oAF70XxHC0AdyVy.jpg">
<div style="text-align: center; color:darkblue; font-weight: bold; ">
Dr. Sonam Rewari</div>
<div style="color: black;">Asst Professor, ECE Department<br>
faculty advisor, IEEE DTU WIE</div>
</div>
</div>
</section>
<section id='services' class="s-services">
<div class="row section-header has-bottom-sep" style="font-family: serif; border-bottom: gray solid;" data-aos="fade-up">
<div class="col-full">
<h1 class="display-2">ABOUT OUR CHAPTERS</h1>
</div>
</div>
<div id="cs" class="grid-container_2" style="border-bottom: gray solid; font-family: sans-serif; margin: 0px 50px 0px 50px;">
<div class="grid-item_2" data-aos="fade-up">
<br> <br><br>
<div class="service-text">
<img src="./images/IEEE_CS.png" style="max-width: 70%">
</div>
</div>
<div class="grid-item_2" data-aos="fade-up">
<br> <br><br>
<a href="#cs"><h3 class="h4">IEEE DTU CS CHAPTER</h3></a>
<p style="padding: 0px 30px 0px 30px; 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>
<a href="#cs" class="smoothscroll btn btn--stroke-2">
Know More
</a>
<br><br>
</div>
</div>
<br>
<div id="pes" class="grid-container_2" style="border-bottom: gray solid; margin: 0px 50px 0px 50px;">
<div class="grid-item_2" data-aos="fade-up">
<br> <br><br>
<div class="service-text">
<img height="300" src="./images/PES_IEE.png" style="max-width: 70%">
</div>
</div>
<div class="grid-item_2" data-aos="fade-up">
<br> <br><br>
<div class="service-text">
<a href="./chapters/pes.html"><h3 class="h4">IEEE DTU PES-IAS CHAPTER</h3></a>
<p style="padding: 0 30px 0 30px; text-align: justify;">
The Power & Energy Society (PES) 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 of the PES are leaders in this field, and the
members gain substantial benefits.
</p>
<a href="./chapters/pes.html" class="btn btn--stroke-2">
Know More
</a>
<br><br>
</div>
</div>
</div>
<br>
<div id="wie" class="grid-container_2" style="border-bottom: gray solid; margin: 0px 50px 0px 50px;">
<div class="grid-item_2" data-aos="fade-up">
<br> <br><br>
<div class="service-text">
<img height="100" src="./images/IEEE_WIE.png" style="max-width: 70%">
</div>
</div>
<div class="grid-item_2" data-aos="fade-up">
<br> <br><br>
<div class="service-text">
<br>
<br>
<br>
<a href="#wie"><h3 class="h4">IEEE DTU WIE CHAPTER</h3></a>
<p style="padding: 0 30px 0 30px; 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>
<a href="#wie" class="smoothscroll btn btn--stroke-2">
Know More
</a>
<br><br>
</div>
</div>
</div>
</section>
<section id="clients" class="s-clients">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead" style="color: #70A6E3;">FUN & ACTIVITIES</h3>
<h1 class="display-2">OUR EVENTS</h1>
<h3 class="subhead" style="color: #70A6E3;">Some of the events conducted by IEEE DTU throughout the
year</h3>
</div>
</div>
<div id="events" class="row clients-outer" data-aos="fade-up">
<div class="col-full">
<div class="clients">
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;"
src="images/clients/ieeeday.png"><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">IEEE Day <span style="font-weight: lighter;"><br>Celebrating the Oldest Student Society of DTU</span></span></a>
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;"
src="images/clients/vihaan.png" /><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">VIHAAN <span style="font-weight: lighter;"><br>The Hackathon</span></span></a>
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;" src="images/clients/wieveck.png"><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">Project WIEVEK <span style="font-weight: lighter;"><br>Empowering Young Minds in Engineering</span></span></a>
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;"
src="images/clients/techweek23.jpg" /><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">TECHWEEK 23 <span style="font-weight: lighter;"><br>1 Week IEEE workshops</span></span></a>
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;"
src="images/clients/techfusion.png" /><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">Techfusion<span style="font-weight: lighter;"><br>Month-long celebration of innovation and learning</span></span></a>
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;" src="images/clients/MIST.jpeg" /><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">MIST<span style="font-weight: lighter;"><br>The CRYPTIC HUNT</span></span></a>
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;"
src="images/clients/hackaithon.png" /><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">Hack-AI-Thon<span style="font-weight: lighter;"><br>Gen AI Hackathon</span></span></a>
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;" src="images/clients/blockchain.png" /><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">Blockchain<span style="font-weight: lighter;"><br>A webinar on Web3 & Blockchain</span></span></a>
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;" src="images/clients/wordquit.png" /><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">WorldQaunt<span style="font-weight: lighter;"><br> A quantitative finance & fintech Challenge</span></span></a>
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;" src="images/clients/ieeextreme.png" /><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">IEEEXtreme<span style="font-weight: lighter;"><br> 24-hour global competition</span></span></a>
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;" src="images/clients/DSSYWC.png" /><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">DSSYWC-22<span style="font-weight: lighter;"><br> DSSYWC 2022</span></span></a>
<a href="#0" title="" class="clients__slide"><img style="height: 400px; width: 400px;" src="images/clients/seminar.jpg" /><span
style="color: black; font-size: larger; font-weight: bold; font-family: monospace;">Internation seminars<span style="font-weight: lighter;"><br> A Seminar on DS & AI</span></span></a>
</div>
</div>
</div>
<br><br>
<div id="testinomials" class="row section-header" data-aos="fade-up">
<div class="col-full">
<br><br>
<br><br>
<h3 class="subhead" style="color: #70A6E3;">PROUD TO PRESENT</h3>
<h1 class="display-2">Testimonials</h1>
</div>
</div>
<div class="row clients-testimonials" data-aos="fade-up">
<div class="col-full">
<div class="testimonials">
<div class="testimonials__slide">
<div class="grid-container">
<div class="grid-items">
<br><br>
<p style="text-align: justify;">P.M. Foundation Fellowship – Awarded the fellowship for securing a rank among the
top 10 performers in GCC among all participating
candidates in the P.M Foundation Talent Search Exam and being the only 1 student
to do so from Kuwait in the year.</p>
</div>
<div>
<img style="height: 400px;" src="images/avatars/Screenshot 2022-09-04 at 2.05.57 PM.png" alt="Author image"
class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Sonal Bera</span>
<span class="testimonials__pos">PM fellowship Awardee</span>
</div>
</div>
</div>
</div>
<div class="testimonials__slide">
<div class="grid-container">
<div class="grid-items">
<p style="text-align: justify;">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>
</div>
<div>
<img style="height: 400px;" src="images/avatars/Screenshot 2022-09-04 at 2.05.34 PM.png" alt="Author image"
class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Shivam Kumar</span>
<span class="testimonials__pos">Smart India Hackathon</span>
</div>
</div>
</div>
</div>
<div class="testimonials__slide">
<div class="grid-container">
<div class="grid-items">
<br><br><br><br>
<p style="text-align: justify;">Selected for MITACS Globalink Research Internship
at Ryerson University, Toronto, Canada</p>
</div>
<div>
<img style="height: 400px;" src="images/avatars/Screenshot 2022-09-04 at 2.05.41 PM.png" alt="Author image"
class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Harshit Gupta</span>
<span class="testimonials__pos">University Offer</span>
</div>
</div>
</div>
</div>
<div class="testimonials__slide">
<div class="grid-container">
<div class="grid-items">
<p style="text-align: justify; font-size: large;">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>
</div>
<div>
<img style="height: 400px;" src="images/avatars/Screenshot 2022-09-04 at 2.10.10 PM.png" alt="Author image"
class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Shreya</span>
<span class="testimonials__pos">University of Southern California</span>
</div>
</div>
</div>
</div>
<div class="testimonials__slide">
<div class="grid-container">
<div class="grid-items">
<br><br>
<p style="text-align: justify; font-size: large;">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>
</div>
<div>
<img style="height: 400px;" src="images/avatars/Screenshot 2022-09-04 at 2.05.50 PM.png" alt="Author image"
class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Aditya Verma</span>
<span class="testimonials__pos">Research Achievement</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="council" class="s-works">
<div class="intro-wrap">
<br>
<div class="row section-header has-bottom-sep light-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead" style="color: #70A6E3;">The Team</h3>
<h1 class="display-2 display-2--light">IEEE-DTU Council</h1>
</div>
</div>
</div>
<div class="container">
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/Rishab Dandriyal.jpeg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Rishab Dandriyal </br>
<span>CHAIRPERSON</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<li>
<a href="https://www.instagram.com/rintaro_rd/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/rishab-dandriyal-45160122a/"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/Arijit Sen.jpg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Arijit Sen</br>
<span>ViCE-CHAIRPERSON</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<li>
<a href="https://www.instagram.com/aj.arijit/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/arijit-sen-118083233/"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/AreebAhmedKhan.jpg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Areeb Ahmed Khan </br>
<span>GENERAL SECRETARY</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href="#"><i class="fa-brands fa-x-twitter"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://www.instagram.com/khan_areeb22/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/areeb22/"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
</div>
<div class="container">
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/Shashank Jha.jpg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Shashank Jha</br>
<span>JOINT SECRETARY</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href="#"><i class="fa-brands fa-x-twitter"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://www.instagram.com/meshashankjha/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/shashank-jha-7843b01aa/"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/Kurush Rastogi.jpeg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Kurush Rastogi</br>
<span>JOINT SECRETARY</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href="#"><i class="fa-brands fa-x-twitter"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://www.instagram.com/kurush_rastogi/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/kurush-rastogi/"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/AkarshRai.jpg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Akarsh Rai</br>
<span>TREASURER</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<li>
<a href="https://www.instagram.com/i_akarsh_rai/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/akarsh-rai-452311229/"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
</div>
<div class="container">
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/ashmit.png" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Ashmit Sharma</br>
<span>JOINT TREASURER</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href=""><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://www.linkedin.com/in/ashmit-sharma-023490227/"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/Rishi.jpeg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Rishi Maheshwari</br>
<span>CHAIRPERSON, WIE-AG</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href="#"><i class="fa-brands fa-x-twitter"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://www.instagram.com/maheshwarixd/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/rishi-maheshwari-09199020a"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/Kaustubh Kambiri.jpeg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Kaustubh Kambiri</br>
<span>VICE-CHAIRPERSON, WIE-AG</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href="#"><i class="fa-brands fa-x-twitter"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://www.instagram.com/kaustubhkambiri/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/kaustubh-kambiri-927364200"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/anika.PNG" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Anika Passi </br>
<span>SECRETARY, WIE-AG</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href="#"><i class="fa-brands fa-x-twitter"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://www.instagram.com/anikaapassi/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/anikapassi"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
</div>
<div class="container">
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/sidak.jpg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Sidakpreet Singh</br>
<span>CHAIRPERSON, PES-IAS</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href="#"><i class="fa-brands fa-x-twitter"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://www.instagram.com/sydzou/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/sidakpreet-singh-031a52228"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/sankalp.jpg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Sankalp Gautam</br>
<span>VICE-CHAIRPERSON, PES-IAS</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href="#"><i class="fa-brands fa-x-twitter"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://instagram.com/sankalp_gautam_"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/sankalp-gautam"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/Prince kumar .jpg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Prince Kumar</br>
<span>VICE-CHAIRPERSON, PES-IAS</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href="#"><i class="fa-brands fa-x-twitter"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://www.instagram.com/prince15kumar/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/prince-kumar-2a1157202"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
</div>
<div class="container">
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/Dhruv Talan. jpg.jpg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Dhruv Talan</br>
<span>SECRETARY, PES-IAS</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href="#"><i class="fa-brands fa-x-twitter"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://www.instagram.com/d_nightfury24/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/dhruv-talan-852799218"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>
</h2>
</div>
</div>
<div class="box">
<div class="imgBox">
<img src="./images/Council 2025 Photographs/Shivansh Image.jpg" alt="">
</div>
<div class="content">
<h2 style="color: dimgray;">Shivansh Dhondiyal</br>
<span>CHAIRPERSON, CS</span>
<br>
<ul class="contact-social" style="margin-top: 1rem;">
<!-- <li>
<a href="#"><i class="fa-brands fa-x-twitter"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li> -->
<li>
<a href="https://www.instagram.com/shivansh6337/"><i class="fa-brands fa-instagram"
style="color: orangered; background-color: whitesmoke; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/shivansh-dhondiyal-427aaa204"><i class="fa-brands fa-linkedin"
style="color: whitesmoke; background-color: blue; padding: 0.4rem; border-radius: 4px;"
aria-hidden="true"></i></a>
</li>
</ul>