forked from igdtuw19ieee/WebTask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1473 lines (1252 loc) · 96.6 KB
/
index.html
File metadata and controls
1473 lines (1252 loc) · 96.6 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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>IEEE IGDTUW</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="LOGOieee.png">
<!--Google Font link-->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<link rel="stylesheet" href="assets/css/slick/slick.css">
<link rel="stylesheet" href="assets/css/slick/slick-theme.css">
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="assets/css/iconfont.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/bootstrap.css">
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<link rel="stylesheet" href="assets/css/bootsnav.css">
<!-- xsslider slider css -->
<!--<link rel="stylesheet" href="assets/css/xsslider.css">-->
<!--For Plugins external css-->
<!--<link rel="stylesheet" href="assets/css/plugins.css" />-->
<!--Theme custom css -->
<link rel="stylesheet" href="assets/css/style.css">
<!--<link rel="stylesheet" href="assets/css/colors/maron.css">-->
<!--Theme Responsive css-->
<link rel="stylesheet" href="assets/css/responsive.css" />
<script src="assets/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body data-spy="scroll" data-target=".navbar-collapse" >
<!-- Preloader -->
<div id="loading">
<div id="loading-center">
<div id="loading-center-absolute">
<div class="object" id="object_one"></div>
<div class="object" id="object_two"></div>
<div class="object" id="object_three"></div>
<div class="object" id="object_four"></div>
</div>
</div>
</div><!--End off Preloader -->
<div class="culmn bg-head">
<!--Home page style-->
<nav class="navbar navbar-default bootsnav navbar-fixed">
<div class="navbar-top fix">
<div class="container">
<div class="row">
</div>
</div>
</div>
<!-- Start Header Navigation -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-menu">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand" >
<img src="assets/images/LOGOieee.png" class="logo" alt="">
<!--<img src="assets/images/footer-logo.png" class="logo logo-scrolled" alt="">-->
</a>
</div>
<!-- End Header Navigation -->
<!-- navbar menu -->
<div class="collapse navbar-collapse bg-head" id="navbar-menu">
<ul class="nav navbar-nav navbar-right">
<li><a href="#home">Home</a></li>
<li><a href="#features">About Us</a></li>
<li><a href="#business">WIE</a></li>
<li><a href="#WIEmpower">WIEmpower</a></li> <!-- WIEmpower-->
<li><a href="#product">Activities</a></li>
<li><a href="#test">Achievements</a></li>
<li><a href="#brand">Team</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div>
<!--Home Sections-->
<section id="home" class="home bg-black fix">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="main_home text-center">
<div class="col-md-12">
<div class="hello_slid">
<div class="slid_item">
<div class="home_text ">
<h1 class="text-white">Inspire</h1>
<div class="home_btns m-top-40">
<a href="https://www.ieee.org/membership/join/index.html" class="btn btn-default m-top-20">Join IEEE</a>
</div>
</div>
</div><!-- End off slid item -->
<div class="slid_item">
<div class="home_text ">
<h1 class="text-white">Enable</h1>
</div>
<div class="home_btns m-top-40">
<a href="https://www.ieee.org/membership/renew.html" class="btn btn-default m-top-20">Renew Membership</a>
</div>
</div><!-- End off slid item -->
<div class="slid_item">
<div class="home_text ">
<h1 class="text-white">Empower</h1>
</div>
<div class="home_btns m-top-40">
<h3 class="text-white">Follow Us on Facebook</h3>
<a href="https://www.facebook.com/ieeeigdtuw/" class="btn btn-default m-top-20">For Latest Updates</a>
</div>
</div><!-- End off slid item -->
<div class="slid_item">
<div class="home_text ">
<h1 class="text-white">Engage</h1>
</div>
<div class="home_btns m-top-40">
<h3 class="text-white">Follow Us on Facebook</h3>
<a href="https://www.facebook.com/IGDTUWIE/" class="btn btn-default m-top-20">For WIE Updates</a>
</div>
</div><!-- End off slid item -->
</div>
</div>
</div>
</div><!--End off row-->
</div><!--End off container -->
</section> <!--End off Home Sections-->
<!--Featured Section-->
<section id="features" class="features">
<div class="container">
<div class="row">
<div class="main_features fix roomy-70">
<div class="f_item_text">
<h2><strong>About Us</strong></h2>
<p class="m-top-20">IEEE IGDTUW started off with its inspiring journey as IEEE IGIT, inaugurated on 6th February 2004 with around 33 members. Now the student branch of IEEE IGDTUW has a strength of about 200 active members. Stepping beyond the common perceptions, IEEE IGDTUW boasts of providing various platforms to aspiring women engineers with opportunities to host plethora of interesting technical as well as non-technical events, participate in various technical events and attend national as well as international conferences. Our goal is to imbibe technical skills, managerial skills and self-confidence in students via various events that keep the student branch breathing throughout the year, like the IEEE Week, IEEE Day Celebration, and SIGs (Student Interest Groups) to excel in both academic and professional front. We envision to support and motivate students to become exent engineers and professionals with our continued endeavour to provide the best of opportunities to all the student members. IEEE IGDTUW continues to uphold its mission <i>“To encourage innovation and technical Excellence amongst young Engineers to achieve socially constructive technical development towards a globally competent India”.</i>
</p>
</div>
</div>
</div><!-- End off row -->
</div><!-- End off container -->
</section><!-- End off Featured Section-->
<!--Business Section-->
<section id="business" class="business bg-grey roomy-70">
<div class="container">
<div class="row">
<div class="main_business">
<div class="col-md-6">
<div class="business_slid">
<div class="slid_shap bg-grey"></div>
<div class="business_items text-center">
<div class="business_item">
<div class="business_img">
<img src="assets/images/wie.jpg" alt="" />
</div>
</div>
<div class="business_item">
<div class="business_img">
<img src="assets/images/wieig.jpg" alt="" />
</div>
</div>
<div class="business_item">
<div class="business_img">
<img src="assets/images/wiewomen.jpg" alt="" />
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="business_item sm-m-top-50">
<h2><strong>Women In Engineering</strong></h2>
<p class="m-top-20">We at IEEE WIE IGDTUW aim to motivate young girls to take up technical roles in the society and lead life as confident individuals while leaving a positive impact on the society. To achieve our goal IEEE WIE IGDTUW puts in persistent efforts throughout the year via various activities. IEEE WIE IGDTUW is the recipient of the prestigious Darrel Chong Award, gold medal for 2016-17 for the “Sparsh Outreach Program” . Sparsh is The Outreach Program by IEEE WIE IGDTUW Affinity Group where volunteers interact with girls from the orphanage, Kilkari .Student Volunteers under Sparsh, regularly visit the Orphanage to share their time with the girls over there and inspire them in every possible way. More than teaching them any subject, what values more is the experience shared at both the ends. IEEE WIE IGDTUW feels extremely honoured to be able to impact and inspire even a few girls through these activities and plans to continue such activities in the future as well.
</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End off Business section -->
<!--Featured Section (WIEmpower) -->
<section id="WIEmpower" class="business bg-grey roomy-0">
<div class="container">
<div class="row">
<div class="main_features fix roomy-0">
<div class="f_item_text">
<h2><strong>WIEmpower</strong></h2>
<p class="m-top-20"> WIEmpower is the 2-day flagship event organised by <b>IEEE IGDTUW</b> and <b>IEEE Delhi Section</b> in association with <b>Department of Science and Technology</b> on March 26-27, 2019. WIEmpower consisted of the following <b>tracks:</b> </p>
<br>
<ul style="list-style: circle;">
<li><b>Data Science Workshop:</b> The two-day workshop was organised by <b>GirlScript Foundation</b>. It witnessed over 20 attendees and had an overwhelming response.</li>
<li ><b>Open CV Workshop:</b> The two-day hands-on certified workshop was organised by <b>Allinone CyberTeam</b>. It witnessed over 30 attendees and had an overwhelming response.</li>
<li><b>Ideathon:</b> This competition was organised on the last day WIEmpower where the participants had to solve some burning problems with out of the box solutions. The competiton witnessed teams from colleges outside Delhi and was a huge success.</li>
</ul>
<!-- <br><br>All students from colleges in Delhi NCR can participate in <i><b>"WIEmpower"</b></i>. -->
<p class="m-top-20">
<br><b>**Follow our <a href = "https://www.facebook.com/IGDTUWIE"> Facebook</a> page for more details.</b>
<!-- <br><br><b>Note:</b> All the tracks will take place in parallel.-->
</p>
</div>
</div>
</div> <!-- End off row -->
<!-- -->
</div> <!-- End off container -->
<!-- -->
</section> <!-- End off Featured Section (WIEmpower) -->
<!--Business Section-->
<!--DataScience Workshop-->
<!--
<section id="business" class="business bg-grey roomy-70">
<div class="container">
<div class="row">
<div class="main_business">
<div class="col-md-6">
<div class="business_items text-center">
<div class="business_item">
<div class="business_image">
<img src="assets/images/datascience.jpg" alt="" />
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="business_item sm-m-top-50">
<h2><strong>"Data Science" Workshop</strong></h2>
<p class="m-top-20">
<b>Date</b> : 26-27 March <b>Time</b> : 9am- 5 pm<br><b>Venue</b> : IGDTUW , Kashmere Gate. <b>Capacity</b>: 50 Attendees
<br>IEEE IGDTUW and IEEE Delhi Section in association with Department of Science and Technology under "WIEMPOWER" brings to you a 2-day workshop on <b>DATA SCIENCE</b> brought to you by <b>GirlScript Foundation</b>.
<br><b>Topics that will be covered</b>
<br>(i) Data Science: Definition
<br>(ii) Data Visualising & Mining : Tableau
<br>(iii) Data Modelling
<br>(iv) Data Processing
<br>(v) Regression : All Types
<br><br><b>Registration fee</b>-
<br>Rs.400 ( IEEE members)
<br>Rs.500 ( Non-IEEE members)
<br><br>Register at:<a href="https://goo.gl/forms/hNx9EjiDmOEIorg22">https://goo.gl/forms/hNx9EjiDmOEIorg22</a>
<br>Connect with Us:<a href="https://chat.whatsapp.com/Eb6wkQagL281gLlTojgc3E">https://chat.whatsapp.com/Eb6wkQagL281gLlTojgc3E</a>
</p>
</div>
</div>
</div>
</div>
</div>
</section> --> <!--End Of Data Science Workshop--><!-- End off Business section -->
<!--Business Section-->
<!--Open CV Workshop-->
<!--
<section id="business" class="business bg-grey roomy-70">
<div class="container">
<div class="row">
<div class="main_business">
<div class="col-md-6"> -->
<!--<div class="business_slid">-->
<!--
<div class="slid_shap bg-grey"></div>
<div class="business_items text-center">
<div class="business_item">
<div class="business_image">
<img src="assets/images/opencv.jpg" alt="" />
</div>
</div>
</div> -->
<!-- // </div>-->
<!--
</div>
<div class="col-md-6">
<div class="business_item sm-m-top-50">
<h2><strong>"Image Processing with OpenCV" Workshop</strong></h2>
<p class="m-top-20">
<b>Date</b> : 26-27 March <b>Time</b> : 9am- 5 pm<br><b>Venue</b> : IGDTUW , Kashmere Gate. <b>Capacity</b>: 50 Attendees
<br>IEEE IGDTUW and IEEE Delhi Section under WIEMPOWER in association with Department of Science and Technology brings to you a two-day hands-on certified workshop on <b>"IMAGE PROCESSING using OpenCV"</b> brought to you by <b>Allinone CyberTeam</b>.
<br><br><b>Topics that will be covered</b>
<br>(i) Image Processing
<br>(ii) Image Enhancement
<br>(iii) Image Segmentation
<br>(iv) Representation and Description
<br>(v) Object Recognition and Applications
<br>(vi) Hands-On Sessions
<br><br><b>Registration fee</b>-
<br>Rs.400 ( IEEE members)
<br>Rs.500 ( Non-IEEE members)
<br><br>Register at: <a href="https://goo.gl/forms/i0elX7gGxbQKhKQ23">https://goo.gl/forms/i0elX7gGxbQKhKQ23</a>
<br>Connect with Us:<a href="https://chat.whatsapp.com/GSbrGexaWxP127GzHBC0ju">https://chat.whatsapp.com/GSbrGexaWxP127GzHBC0ju</a>
</p>
</div>
</div>
</div>
</div>
</div>
</section> --> <!--End Of Open CV Workshop--><!-- End off Business section -->
<!--Business Section-->
<!--Ideathon-->
<!--
<section id="business" class="business bg-grey roomy-70">
<div class="container">
<div class="row">
<div class="main_business">
<div class="col-md-6">
<div class="slid_shap bg-grey"></div>
<div class="business_items text-center">
<div class="business_item">
<div class="business_image">
<img src="assets/images/ideathon.jpg" alt="" />
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="business_item sm-m-top-50">
<h2><strong>"Ideathon" Competition</strong></h2>
<p class="m-top-20">
<b>Date</b> : 27 March <b>Time</b> : 11am- 4pm <b>Venue</b> : IGDTUW , Kashmere Gate.
<br>IEEE IGDTUW and IEEE Delhi Section under WIEMPOWER'19 in association with Department of Science and Technology brings to you <b>"IDEATHON"</b> where you will race to solve burning problems with your out of the box solutions.
This world full of problems requires your ideas to shape the future in the right direction! Come show your problem-solving abilities to win exciting prizes!
<br><b>#Ponder</b>
<br><b>#Propose</b>
<br><b>#Present</b>
<br><br><b>Team Size:</b>
<br>Minimum- 2 Members
<br>Maximum- 4 Members
<br><br><b>Eligibility Criteria</b>-
<br>Minimum 1 female participant per team.
<br><br>Register for Free at: <a href="https://goo.gl/forms/C0Z4gj7jqgqx9EMm2">https://goo.gl/forms/C0Z4gj7jqgqx9EMm2</a>
<br>Connect with Us:<a href="https://chat.whatsapp.com/C3XTs3rxR2F5Wc7gBWGCwA">https://chat.whatsapp.com/C3XTs3rxR2F5Wc7gBWGCwA</a>
</p>
</div>
</div>
</div>
</div>
</div>
</section> --> <!--End Of Ideathon--><!-- End off Business section -->
<!--product section-->
<section id="product" class="product">
<div class="container">
<div class="main_product roomy-80">
<div class="head_title text-center fix">
<h1><strong>Our Past Activities</strong></h1>
<h5></h5>
</div>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item">
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/sap.JPG" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/sap.JPG" class="popup-img"> Mr Sapta Girisa is a Vice President at Aricent and IEEE IGDTUW was honoured to have him to deliver a talk on Machine Learning and Artificial Intelligence. This talk was open to students and teachers of all colleges. </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Tech Talk</h5>
<h6>On AI and ML by Mr. Sapta Girisa</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/pictionary.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/pictionary.jpg" class="popup-img">Students were invited to play this game where they were given a technology related word each.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Week 3.1</h5>
<h6>Pictionary</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/code.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/code.jpg" class="popup-img">An online coding that invited brainy coders to get to work on Hackerrank’s coding Platform. </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Week 3.1</h5>
<h6>Codesprint 1.0</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/Diksha.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/Diksha.jpg" class="popup-img">Diksha Vasudev , a final year ECE senior who got placed in GE, delivered a talk where she discussed about her journey to being placed in one of the most coveted companies. </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>WIE Talk</h5>
<h6>By Diksha Vasudev</h6>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/treasure hunt.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/treasure hunt.jpg" class="popup-img">This treasurastic event attracted many ‘Sherlock cum Einsteins’ to put on their Detective caps and discover the answers which led to the final destination.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Week 3.1</h5>
<h6>Treasure-Hunt</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/Beg Borrow Steal.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/Beg Borrow Steal.jpg" class="popup-img">Students were asked to find and bring a list of items assigned to them from around the campus either by begging or borrowing. This game inculcated team spirit in the students while engaging them in this fun task.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Week 3.1</h5>
<h6>Beg Borrow Steel</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/momentum.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/momentum.jpg" class="popup-img">IEEE IGDTUW launched MOMENTUM 1.0, a platform for a mentor and a mentee to come together and collaborate to design an innovative project.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Tech Initiative</h5>
<h6>Momentum 1.0</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/ind.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/ind.jpg" class="popup-img">IEEE IGDTUW celebrated India’s 72ⁿᵈ Independence Day with an online technical GK quiz on its Facebook page.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Independence Day</h5>
<h6>Indiquizitive</h6>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/Sonalika.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/Sonalika.jpg" class="popup-img">Ms. Sonalika Sahoo from the batch of 2019, who has got placed at Microsoft IDC enlightened the young minds about her journey. </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>WIE Talk</h5>
<h6>By Sonalika Sahoo</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/IEEE orientation.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/IEEE orientation.jpg" class="popup-img">IEEE IGDTUW organised an Orientation for the freshers and other explorative students to tell them about the organisation and all that it had to offer. </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Orientation</h5>
<h6>New Session New Opportunities</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/kilkaari.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/kilkaari.jpg" class="popup-img">Sparsh is the Outreach Program started by IEEE WIE IGDTUW affinity group where volunteers interact with girls from the Kilkari Rainbow Shelter Home</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Humanitarian Project</h5>
<h6>Sparsh Outreach Program</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/innerve.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/innerve.jpg" class="popup-img">An IEEE IGDTUW association with Innerve 2018, the annual techfest of IGDTUW, to create a challenge for all the electronics enthusiasts,that provides an opportunity to unleash their circuitry skills</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Collaborations</h5>
<h6>CircuitX</h6>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/RPi.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/RPi.jpg" class="popup-img">A 2-day workshop on IoT with Raspberry Pi was successfully conducted on 14-15 January 2019. It was a productive workshop that gave hands on experience to attendees.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Workshop on IoT with Raspberry Pi</h5>
<h6>By TechieNest, IIT Bombay</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/codeSprint.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/codeSprint.jpg" class="popup-img">An online coding that invited brainy coders to get to work on Hackerrank’s coding Platform.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Week 3.2</h5>
<h6>Codesprint 1.3</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/TechEnact.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/TechEnact.jpg" class="popup-img">Students were invited to play this game where movies were replaced by technical terms and actions by one-liners to guess the technical term being enacted.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Week 3.2</h5>
<h6>TechEnact</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/resumeWriting.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/resumeWriting.jpg" class="popup-img">Niharika Karana, Chairperson of IEEE IGDTUW and final year ECE student, shared some tips as well as conducted a hands-on session on resume writing. </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Week 3.2</h5>
<h6>Resume Writing by Niharika Karana</h6>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/wieTalkNiharikaDi.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/wieTalkNiharikaDi.jpg" class="popup-img">Niharika Karana, Chairperson of IEEE IGDTUW and final year ECE student, delivered an interactive talk about her journey in securing a job at Cogoport. This was the first WIE talk dedicated to the Managerial domain. </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>WIE Talk</h5>
<h6>By Niharika Karana</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/researchPaper.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/researchPaper.jpg" class="popup-img">Ms. Shuchi Nagaria, IGDTUW Alumni of batch 2018, discussed the various steps in writing a research paper and had given some valuable bits of information from a student's perspective. </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Week 3.2</h5>
<h6>Research Paper Writing by Shuchi Nagaria</h6>
</div>
</div>
</div>
<!--<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/wieTalkNiharikaDi.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/wieTalkNiharikaDi.jpg" class="popup-img">Ms. Shuchi Nagaria, IGDTUW Alumni of batch 2018, discussed the various steps in writing a research paper and had given some valuable bits of information from a student's perspective.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Week 3.2</h5>
<h6>Research Paper Writing by Shuchi Nagaria</h6>
</div>
</div>
</div>
-->
<div class="col-sm-3">
<div class="port_item xs-m-top-20">
<div class="port_img">
<img src="assets/images/sparshOrientation.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/sparshOrientation.jpg" class="popup-img">IEEE IGDTUW organised an Orientation for the Sparsh Outreach Program, started by IEEE WIE IGDTUW affinity group, where volunteers interact with girls from the Kilkari Rainbow Shelter Home and share their knowledge and experience with them.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Week 3.2</h5>
<h6>Sparsh Orientation</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/opencv.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/opencv.jpg" class="popup-img">The 2-day workshop was organised by ALLinone CyberTeam as one of the Technology Tracks in WIEmpower 2019. </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Open CV Workshop</h5>
<h6>WIEmpower 2019</h6>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="row">
<!-- <div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/TechEnact.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/TechEnact.jpg" class="popup-img">Students were invited to play this game where movies were replaced by technical terms and actions by one-liners to guess the technical term being enacted.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Week 3.2</h5>
<h6>TechEnact</h6>
</div>
</div>
</div> -->
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/datascience.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/datascience.jpg" class="popup-img">The 2-day workshop was organised by GirlScript Foundation as one of the Technology Tracks in WIEmpower 2019.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Data Science Workshop</h5>
<h6>WIEmpower 2019</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/ideathon.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/ideathon.jpg" class="popup-img">The competition was organised on the last day WIEmpower where the participants had to solve some burning problems and come up with some out of the box solutions. </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Ideathon</h5>
<h6>WIEmpower 2019</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/20Aug.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/20Aug.jpg" class="popup-img">Dr. Manoj Saxena, Associate professor,Dept of EEE, DDUC, DU delivered a talk on "Modeling and Simulation of Tunnel Field Effect Transistor". The talk was organised in association with IEEE Delhi Section and EDS Society </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Distinguished Lecture Talk</h5>
<h6>On Tunnel FET by Dr.Manoj Saxena</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/Orientation.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/Orientation.jpg" class="popup-img">IEEE IGDTUW successfully conducted its orientation on 21st August, for the session 2019-20.The event was a huge success as large number of students turned up to learn more about the society.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>IEEE Orientation </h5>
<h6>21st August 2019</h6>
</div>
</div>
</div>
<!-- <div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/opencv.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/opencv.jpg" class="popup-img">The 2-day workshop was organised by ALLinone CyberTeam as one of the Technology Tracks in WIEmpower 2019. </a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Open CV Workshop</h5>
<h6>WIEmpower 2019</h6>
</div>
</div>
</div> -->
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/Brajesh_Kaushik.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/Brajesh_Kaushik.jpg" class="popup-img">Talk by Brajesh Kumar Kaushik in Mini Colloquium organised in association with IEEE Delhi Section and Electron Device Society on "Trends And Challenges in Microelectronics and VLSI Design" on 6 September 2019</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Talk by Dr.Brajesh Kumar Kaushik</h5>
<h6> Department of ECE, IIT Roorkee</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/manoj.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/manoj.jpg" class="popup-img">Talk by Dr. Manoj Saxena in Mini Colloquium organised in association with IEEE Delhi Section and Electron Device Society on "Trends And Challenges in Microelectronics and VLSI Design" on 6 September 2019.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Talk by Dr.Manoj Saxena </h5>
<h6>Department of Electronics, Deen Dayal Upadhyay College, DU</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/mayank.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/mayank.jpg" class="popup-img">Talk by Prof.Mayank Shrivastava in Mini Colloquium organised in association with IEEE Delhi Section and Electron Device Society on "Trends And Challenges in Microelectronics and VLSI Design" on 6 September 2019</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Talk by Prof. Mayank Shrivastava </h5>
<h6>IISc Bangalore</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/panel.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/panel.jpg" class="popup-img">Interactive Panel Discission in Mini Colloquium organised in association with IEEE Delhi Section and Electron Device Society on "Trends And Challenges in Microelectronics and VLSI Design" on 6 September 2019</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Panel Discussion</h5>
<h6>Mini Colloquium</h6>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item active">
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/project_display.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/project_display.jpg" class="popup-img">Project Display by BTech and MTech students along with startup projects made under Anveshan Foundation in Mini Colloquium organised in association with IEEE Delhi Section and Electron Device Society on 6 September 2019</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>Project_Display</h5>
<h6>By Btech/Mtech Students and Anveshan Foundation</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/swarna.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/swarna.jpg" class="popup-img">On IEEE DAY, WIE talk on"Unicode & Multilingual Computing" on 1st October 2019 under IEEE Week 4.1.This talk was conveyed by Ms. Swaran Lata who currently works under Ministry of Electronics and Information Technology..</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>WIE Talk by Ms. Swaran Lata </h5>
<h6>IEEE DAY,IEEE WEEK 4.1</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/aradhana.jpg" alt="" />
<div class="port_overlay text-center">
<a href="assets/images/aradhana.jpg" class="popup-img">On 3rd October 2019,IEEE society of IGDTUW organized a very important session under IEEE Week 4.1 on the topic "Emotional Quotient and Life Skills" by Dr. Aradhana Sharma who is Doctorate in Psychology from Delhi University, and a life skills trainer.</a>
</div>
</div>
<div class="port_caption m-top-20">
<h5>WIE Talk by Dr.Aradhana Sharma </h5>
<h6>IEEE WEEK 4.1</h6>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="port_item xs-m-top-30">
<div class="port_img">
<img src="assets/images/cn.jpg" alt="" />