-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
853 lines (691 loc) · 44.7 KB
/
Copy pathindex.html
File metadata and controls
853 lines (691 loc) · 44.7 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
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("#second-day").hide();
$("#2").click(function() {
$("#first-day").hide();
$("#second-day").show(2000);
});
$("#1").click(function() {
$("#first-day").show(2000);
$("#second-day").hide();
});
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-127478991-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-127478991-1');
</script>
<title>DSC 18</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- FontAwesome CSS -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Swiper CSS -->
<link rel="stylesheet" href="css/swiper.min.css">
<!-- Styles -->
<link rel="stylesheet" href="style.css">
<script src="js/custom.js"></script>
</head>
<body>
<header class="site-header">
<div class="header-bar">
<div class="container-fluid" id="home">
<div class="row align-items-center">
<div class="col-10 col-lg-2 order-lg-1">
<div >
<div>
<a href="#"><img id="mainlogo" src="images/logo.png" alt="logo"></a>
</div><!-- .site-title -->
</div><!-- .site-branding -->
</div><!-- .col -->
<div class="col-2 col-lg-8 order-3 order-lg-2">
<nav class="site-navigation">
<div class="hamburger-menu d-lg-none">
<span></span>
<span></span>
<span></span>
<span></span>
</div><!-- .hamburger-menu -->
<ul>
<li><a href="#" class="al"><b>Home</b></a></li>
<li><a href="#about" class="al"><b>About us</b></a></li>
<li><a href="#speakers" class="al"><b>Speakers</b></a></li>
<li><a href="#schedule" class="al"><b>Schedule</b></a></li>
<li><a href="#gallery" class="al"><b>Gallery</b></a></li>
<li><a href="#sponsors" class="al"><b>Sponsors</b></a></li>
<li><a href="#contact" class="al"><b>Contact</b></a></li>
</ul>
</nav><!-- .site-navigation -->
</div><!-- .col -->
<div class="col-lg-2 d-none d-lg-block order-2 order-lg-3">
<div class="buy-tickets">
<a class="btn gradient-bg" href="https://www.townscript.com/e/ieee-delhi-section-congress-334011/booking"
target="_blank">Register Now</a>
</div><!-- .buy-tickets -->
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container-fluid -->
</div><!-- .header-bar -->
<div class="swiper-container hero-slider">
<div class="swiper-wrapper">
<div class="swiper-slide" data-date="2018/11/03 9:00" style="background: url('images/dtu11.jpg');background-size: cover; ">
<div class="hero-content">
<div class="container">
<div class="row">
<div class="col flex flex-column justify-content-center">
<div class="entry-header">
<div class="countdown flex align-items-center">
<div class="countdown-holder flex align-items-baseline">
<span class="dday"></span>
<label>Days</label>
</div><!-- .countdown-holder -->
<div class="countdown-holder flex align-items-baseline">
<span class="dhour"></span>
<label>Hours</label>
</div><!-- .countdown-holder -->
<div class="countdown-holder flex align-items-baseline">
<span class="dmin"></span>
<label>Minutes</label>
</div><!-- .countdown-holder -->
<div class="countdown-holder flex align-items-baseline">
<span class="dsec"></span>
<label>Seconds</label>
</div><!-- .countdown-holder -->
</div><!-- .countdown -->
<h2 class="entry-title">Delhi Section Student Congress <br>Get your ticket now!</h2>
</div><!--- .entry-header -->
<div class="entry-footer">
<a class="btn gradient-bg" href="https://www.townscript.com/e/ieee-delhi-section-congress-334011/booking"
target="_blank">Register Now</a>
<!--JP-->
<a class="btn gradient-bg" href="https://www.townscript.com/e/ieee-dsc-accomodation-registration-133321" target="_blank">Accommodation Registration</a>
</div><!-- .entry-footer" -->
</div><!-- .col -->
</div><!-- .container -->
</div><!-- .hero-content -->
</div><!-- .swiper-slide -->
</div><!-- .swiper-wrapper -->
<div class="swiper-slide " data-date="2018/11/03 9:00" style="background: url('images/dtu12.jpg');background-size: cover; ">
<div class="hero-content">
<div class="container">
<div class="row">
<div class="col flex flex-column justify-content-center">
<div class="entry-header">
<div class="countdown flex align-items-center">
<div class="countdown-holder flex align-items-baseline">
<span class="dday"></span>
<label>Days</label>
</div><!-- .countdown-holder -->
<div class="countdown-holder flex align-items-baseline">
<span class="dhour"></span>
<label>Hours</label>
</div><!-- .countdown-holder -->
<div class="countdown-holder flex align-items-baseline">
<span class="dmin"></span>
<label>Minutes</label>
</div><!-- .countdown-holder -->
<div class="countdown-holder flex align-items-baseline">
<span class="dsec"></span>
<label>Seconds</label>
</div><!-- .countdown-holder -->
</div><!-- .countdown -->
<h2 class="entry-title">Delhi Section Student Congress. <br>Get your ticket now!</h2>
</div><!--- .entry-header -->
<div class="entry-footer">
<a class="btn gradient-bg" target="_blank" href="https://www.townscript.com/e/ieee-delhi-section-congress-334011/booking">Register Now</a>
</div><!-- .entry-footer" -->
</div><!-- .col -->
</div><!-- .container -->
</div><!-- .hero-content -->
</div><!-- .swiper-slide -->
</div><!-- .swiper-wrapper -->
<div class="swiper-slide" data-date="2018/11/03 9:00" style="background: url('images/dtu13.jpg');background-size: cover; ">
<div class="hero-content">
<div class="container">
<div class="row">
<div class="col flex flex-column justify-content-center">
<div class="entry-header">
<div class="countdown flex align-items-center">
<div class="countdown-holder flex align-items-baseline">
<span class="dday"></span>
<label>Days</label>
</div><!-- .countdown-holder -->
<div class="countdown-holder flex align-items-baseline">
<span class="dhour"></span>
<label>Hours</label>
</div><!-- .countdown-holder -->
<div class="countdown-holder flex align-items-baseline">
<span class="dmin"></span>
<label>Minutes</label>
</div><!-- .countdown-holder -->
<div class="countdown-holder flex align-items-baseline">
<span class="dsec"></span>
<label>Seconds</label>
</div><!-- .countdown-holder -->
</div><!-- .countdown -->
<h2 class="entry-title">Delhi Section Student Congress <br>Get your ticket now!</h2>
</div><!--- .entry-header -->
<div class="entry-footer">
<a class="btn gradient-bg" href="https://www.townscript.com/e/ieee-delhi-section-congress-334011/booking"
target="_blank">Register Now</a>
</div><!-- .entry-footer" -->
</div><!-- .col -->
</div><!-- .container -->
</div><!-- .hero-content -->
</div><!-- .swiper-slide -->
</div><!-- .swiper-wrapper -->
</div>
<!-- Add Pagination -->
<div class="swiper-pagination"></div>
<!-- Add Arrows -->
<div class="swiper-button-next flex justify-content-center align-items-center">
<span><svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1171 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z"/></svg></span>
</div>
<div class="swiper-button-prev flex justify-content-center align-items-center">
<span><svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1203 544q0 13-10 23l-393 393 393 393q10 10 10 23t-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23z"/></svg></span>
</div>
</div><!-- .swiper-container -->
</header><!-- .site-header -->
<div class="homepage-info-section">
<div class="container">
<div class="row pd-3">
<iframe width="100%" height="615" src="https://www.youtube.com/embed/OLYeRnm0YIg?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="container" id="about">
<div class="row">
<div class="col-12 col-md-4 col-lg-5">
<figure>
<img src="images/logo.png" alt="logo">
</figure>
</div>
<div class="col-12 col-md-8 col-lg-7">
<header class="entry-header" style="text-align: center;">
<h2><br><br>About the Congress</h2>
</header>
<div class="entry-content" >
<p>IEEE Delhi Section brings one of its biggest annual events, Delhi Section Student Congress 2018. Attracting over 300 delegates from more than 50 Student Branches, DSC is a great opportunity to reach out and engage students from every institution in the field of Engineering. The Congress was launched with two primary objectives. The first was to provide a platform where students can collaborate and learn from our industry partners, sponsors as well as seniors, and the second was to facilitate interaction and coordination among different student branches across the section, thus, enhancing networking. The event provides attendees with tangible, real-life examples and helps them improve their interpersonal and professional skills. Delhi Section Student Congress is a magnificent opportunity, an edifying experience and an invaluable platform for the delegates to ideate and collaborate.</p>
</div>
<!-- <footer class="entry-footer">
<a href="#" class="btn gradient-bg">Read More</a>
<a href="#" class="btn dark">Register Now</a>
</footer> -->
<header class="entry-header">
</header>
</div>
</div>
<div class="row">
<div class="col-24 col-md-12 col-lg-12">
<div class="extra" style="text-align: center">
<h2 >About IEEE</h2>
</div>
<div class="entry-content" style="margin-top:15px" >
<p>IEEE is a non-profit corporation, incorporated in the state of New York on 16 March, 1896. The purpose of IEEE is to engage exclusively in scientific and educational activities directed towards advancement of theory and practice of electrical, electronics, communications and computer engineering as well as computer science, allied branches of engineering and related arts and sciences.
IEEE inspires a global community to innovate for a better tomorrow through its more than 423,000 members in over 160 countries.</p> </div>
<!-- <footer class="entry-footer">
<a href="#" class="btn gradient-bg">Read More</a>
<a href="#" class="btn dark">Register Now</a>
</footer> -->
<header class="entry-header">
</header>
</div>
</div>
<div class="row">
<div class="col-24 col-md-12 col-lg-12">
<div class="extra" style="text-align: center">
<h2 >IEEE Delhi Section</h2>
</div>
<div class="entry-content" style="margin-top:15px">
<p>
IEEE Delhi Section is one of the vibrant sections in India coming under the Asia-Pacific Region, i.e. Region 10 of IEEE. It covers the entire northern part of the country consisting of the National Capital Territory of Delhi, Union Territory of Chandigarh and the five states of Rajasthan, Haryana, Punjab, Himachal Pradesh and Jammu & Kashmir.
<!-- <p> -->
IEEE Delhi Section, which came into existence on May 13, 1976 (after remaining as a Sub-section since 1974), has, as per January, 2013 statistics (excluding Affiliates to Societies), 5208 active members including 3461 student members from over 80 member colleges, a number that is increasing with rapid pace by the day. IEEE Delhi Section follows standard IEEE and Section bylaws while operating.
<!-- </p> -->
<p>
The section organizes, from time to time, activities for dissemination of knowledge in the broader fields of Engineering by conducting technical talks, seminars, conferences, symposiums, workshops, tutorials etc. Not only this, IEEE Delhi Section events also promote exchange of ideas and sharing of knowledge amongst professionals in the corresponding fields. As a society, it has always focused on giving the student members services that justify the membership fee by opening new avenues and providing exciting yet equal opportunities for one and all.
</p>
<p>
With new students entering colleges and joining IEEE every year, the family is bound to grow. IEEE Delhi’s belief in imparting technical as well as non-technical knowledge will be carried forward with an equivalent enthusiasm and gusto for a long time to come.
</p>
</p> </div>
<!-- <footer class="entry-footer">
<a href="#" class="btn gradient-bg">Read More</a>
<a href="#" class="btn dark">Register Now</a>
</footer> -->
<header class="entry-header">
</header>
</div>
</div>
</div>
</div>
<!-- </div> -->
<div class="container" id="speakers" style="padding-top: 25px">
<div class="next-events-section-header">
<h2 style="text-align: center;" class="entry-title">SPEAKERS</h2>
<!--<p style="text-align: center;">Mark your calendars for 3 and 4 November and fill in the events in the organisers because the schedule for DSC is here.</p>-->
</div>
<div class="card-deck" style="padding:5%">
<div class="card">
<img class="card-img-top" src="images/66.jpg" alt="Card image cap" style="">
<div class="card-body">
<h5 class="card-title"><b>Balaji Viswanathan</b></h5>
<p class="card-text">, present CEO of Invento Robotics and a personage on Quora. Most of us might recognize him as the man with more than half a million followers.who has more than 4500 answers spanning over a wide range of topics. </p>
<p class="card-text"><a href="https://www.linkedin.com/in/balajivi" target="_blank">See Profile</a></p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="images/67.jpg" alt="Card image cap" style="">
<div class="card-body">
<h5 class="card-title"><b>Mr. Vikas Jain</b></h5>
<p class="card-text">who is a global speaker, author and Founder of Adhyan Group. He is among the top Motivational Speakers and Keynote/Business Speakers in India. </p>
<p class="card-text"><a href="https://www.linkedin.com/in/vikasjaindotorg" target="_blank">See Profile</a></p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="images/68.jpg" alt="Card image cap" style="">
<div class="card-body">
<h5 class="card-title"><b>Mr. Saurabh Jain</b></h5>
<p class="card-text"> is currently serving as Vice President at Paytm and is leading Paytm's Build for India initiative which is an endeavour to attract youth's attention to solve the problems of India. </p>
<p class="card-text"><a href="https://www.linkedin.com/in/saurabhskj" target="_blank">See Profile</a></p>
</div>
</div>
</div>
<div class="card-deck" style="padding: 5%">
<div class="card" style="">
<img class="card-img-top" src="images/96.jpg" alt="Card image cap" >
<div class="card-body">
<h5 class="card-title"><b>Saurabh Uboweja</b></h5>
<p> CEO, Brands of Desire. Yet another personality who's mastered the arts of both, technology and management. Mr. Saurabh completed his bachelor's degree in I.T. from M.A.N.I.T, and Masters in PGDM, marketing and finance from IIM, Calcutta.</p>
<p class="card-text"><a href="https://www.linkedin.com/in/uboweja" target="_blank">See Profile</a></p>
</div>
</div>
<div class="card" style="">
<img class="card-img-top" src="images/69.png" alt="Card image cap" >
<div class="card-body">
<h5 class="card-title"><b>Bibin Babu</b></h5>
<p class="card-text">Entrepreneur, Proviar | BlockSpace, Webit.INDIA, ICFET, Blockchain Evangelist, TEDx Speaker</p>
<p class="card-text"><a href="https://www.linkedin.com/in/iambibinbabu" target="_blank">See Profile</a></p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="images/Speaker_Diksha_Deo.jpg" alt="Card image cap" style="">
<div class="card-body">
<h5 class="card-title"><b>Diksha Deo</b></h5>
<p class="card-text">Founder & CEO, Incubsence | 250+ Tech Talks | Tech Speaker | Shorlisted by Massachusets Institute of Technology,USA for Innovation and Entrepreneurship program</p>
<p class="card-text"><a href="https://www.linkedin.com/in/dikshadeo" target="_blank">See Profile</a></p>
</div>
</div>
<!-- <div class="card bg-light mb-3" style="">
<div class="card-header">Quote</div>
< class="card-body">
<h5 class="card-title"> </h5>
<p class="card-text">“In your thirst for knowledge, be sure not to drown in all the information.” -Anthony J. D'Angelo
“If a little knowledge is dangerous, where is the man who has so much as to be out of danger?”
― Thomas Henry Huxley
"Fill thy mind with useful knowledge and thou shalt avoid empty words.”
― James Lendall Basford
</p>
</div>-->
</div>
</div>
<div class="homepage-next-events">
<div class="container" id="schedule">
<div class="row align-items-center">
<div class="next-events-section-header">
<h2 style="text-align: center;" class="entry-title">SCHEDULE</h2>
<p style="text-align: center;">Mark your calendars for 3 and 4 November and fill in the events in the organisers because the schedule for DSC is here.</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="mu-schedule-content-area">
<!-- Nav tabs -->
<ul class="mu-menu mu-navbar mu-schedule-menu" role="tablist">
<li id = "1" role="presentation" class="active hah" style="border: 0;"><a href="#first-day" aria-controls="first-day" role="tab" data-toggle="tab" style="padding: 10px;font-size: 20px;">3 NOV (DAY 1)</a></li>
<li id = "2"role="presentation" class="active hah"><a href="#second-day" aria-controls="second-day" role="tab" data-toggle="tab" style="padding: 10px;font-size: 20px;" >4 NOV (DAY 2)</a></li>
</ul>
<!-- Tab panes -->
<div class="mu-schedule-content">
<div role="tabpanel" class="mu-event-timeline" id="first-day">
<ul>
<li>
<div class="mu-single-event">
<h3>IceBreaker Event and Registration</h3>
<h3>9:00-10:00 am</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Inauguration & Branch Counselor Dr. J Panda`s Address</h3>
<h3>10:00 am</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Address By Prerna Ma'am and Rachana Ma'am </h3>
<h3>10:30 am</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Tea</h3>
<h3>11:15 am</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Keynote Speaker By Mr.Balaji Vishwanathan</h3>
<h3>11:30-12:30 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Volunteer Training -YP By Gitansh Anand
, WIE By Dr Shabana Urooj
, Student Track By Rachana Ma'am</h3>
<h3>12:20-1:30 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Lunch </h3>
<h3>1:30 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Talk on "Branding of Intellectual Property: The Journey from idea to market" By Saurabh Uboweja</h3>
<h3>2:45-3:30 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Drone Show </h3>
<h3>3:30-4:00 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Panache - Quizzing Event </h3>
<h3>3:30-5:00 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Drone Show Workshop</h3>
<h3>4:15-4:45 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Experience Sharing Workshop By Gitansh Anand </h3>
<h3>4:45-5:30 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Cultural Night</h3>
<h3>5:30 pm onwards</h3>
</div>
</li>
</ul>
</div>
<div role="tabpanel" class="mu-event-timeline" id="second-day">
<ul>
<li>
<div class="mu-single-event">
<h3>Icebreaker & Registration</h3>
<h3>9:00-10:00 am</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>SPAVe - Business Case Study Challenge</h3>
<h3>10:00-11:00 am</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>WiE Pannel Discussion ,Branch Chair's meet</h3>
<h3>10:00-11:00 am</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Plenary Talk-1: Vikas Jain</h3>
<h3>11:00-11:45 am</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Tea</h3>
<h3>11:45 am</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Plenary Talk-2: Saurabh Jain</h3>
<h3>12:00-12:45 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Plenary Talk 3: BlockChain By Bibin babu</h3>
<h3>12:45-1:30 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Lunch</h3>
<h3>1:30 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Plenary Talk 4: Redesigning Self By BK Vidhatri</h3>
<h3>2:30-3:15 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Branch & project presentation</h3>
<h3>3:15-4:30 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Tea</h3>
<h3>4:30 pm</h3>
</div>
</li>
<li>
<div class="mu-single-event">
<h3>Award Distribution and Closing Ceremony</h3>
<h3>4:45-5:30 pm</h3>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="homepage-regional-events">
<div class="container" id="gallery">
<div class="row">
<div class="col-12" style="padding-top: 100px;">
<header class="regional-events-heading entry-header flex flex-wrap justify-content-between align-items-center">
<h2 class="entry-title">Gallery<br><br></h2>
</header>
</div>
</div>
</div>
<div class="container">
<div class="row ">
<div class="col-lg-4 col-12 p-2">
<img src="images/23120126_1820997928190117_6702467862166061867_o.jpg" style="width: 100%;height: 100%;">
</div>
<div class="col-lg-4 col-12 p-2">
<img src="images/23120021_1820997778190132_136413751480440840_o.jpg" style="width: 100%;height: 100%;">
</div>
<div class="col-lg-4 col-12 p-2">
<img src="images/22904626_1820997754856801_6402874053777202421_o.jpg" style="width: 100%;height: 100%;">
</div>
</div>
<div class="row ">
<div class="col-lg-4 col-12 p-2">
<img src="images/22904806_1820997418190168_8435115351516143591_o.jpg" style="width: 100%;height: 100%;">
</div>
<div class="col-lg-4 col-12 p-2">
<img src="images/22904557_1820993244857252_7278346316849371073_o.jpg" style="width: 100%;height: 100%;">
</div>
<div class="col-lg-4 col-12 p-2">
<img src="images/23154914_1820992304857346_121203931058067366_o.jpg" style="width: 100%;height: 100%;">
</div>
</div>
</div>
<div class="events-partners" id="sponsors">
<header class="entry-header">
<h2 class="entry-title">Previous Sponsors</h2>
</header>
<br><br><br>
<div class="row">
<div class="col-12 col-lg-4">
<a href="#"><img src="images/googlepng.png" alt="" style="height:80%; width:90%; margin-left: 30px;"></a>
</div>
<div class="col-12 col-lg-4">
<a href="#"><img src="images/pesieee.png" style="height:70%; width:90%;margin-left: 30px;" alt=""></a>
</div>
<div class="col-12 col-lg-4">
<a href="#"><img src="images/swiggy.png" style="height:60%; width:60%; margin-left: 80px;" alt=""></a>
</div>
</div>
</div>
</div>
<div class="newsletter-subscribe">
<div class="container" >
<div class="row">
<div class="col-12" >
<header class="entry-header">
<h2 class="entry-title">Venue<br><br></h2>
<!-- <p>Join our datab</p> -->
</header>
<!-- <div class="newsletter-form">
<form class="flex flex-wrap justify-content-center align-items-center">
<div class="col-md-12 col-lg-3">
<input type="text" placeholder="Name">
</div>
<div class="col-md-12 col-lg-6">
<input type="email" placeholder="Your e-mail">
</div>
<div class="col-md-12 col-lg-3">
<input class="btn gradient-bg" type="submit" value="Subscribe">
</div>
</form>
</div> -->
<div class="container">
<div class="row">
<div class="col-12 col-lg-6" >
<div style="width: 100%"><iframe width="100%" height="510" src="https://maps.google.com/maps?width=100%&height=600&hl=en&q=Delhi%20Technological%20University+(Delhi%20Technological%20University)&ie=UTF8&t=&z=12&iwloc=B&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"><a href="https://www.maps.ie/create-google-map/">Google Maps iframe generator</a></iframe></div><br />
</div>
<div class="col-12 col-lg-6" style="color: white; font-size: 20px; text-align: left;">
<h1><b>Delhi Technological University</b></h1>
<h4>Shahbad Daulatpur, Main Bawana Road,Delhi 110042</h4>
<br>Delhi Technological University (DTU) formely known as DCE, is Delhi's first engineering college and an institution that stands tall from 1941 till date where ideas meet reality and talent meets skill. The institute has been excelling in all aspects and is also ranked as 7th best engineering college by India Today Ranking and 13th best by Outlook India in 2018.<br>
A beautiful campus spread across an area of 164 acres. The lush green campus includes a library, a computer center, a sports complex, boys and girls hostels, Open Air Theater and also offers all kinds of amenities that one might require.<br><br><b>Nearest Metro Station:</b> Samaypur Badli(Yellow Line), Rithala (Red Line)<br>
</div>
</div>
</div>
<div class="row">
<div id="contact" class="col-12" style="color: white; font-size: 20px; text-align: left;">
<br><br><h1 style="text-align: center;"><b>Contact Us<br></b></h1><br>
<div class="row">
<div class="col-12 col-lg-4 text-center">
<strong>Utkarsh Singh</strong><br>
(Student Section Representative)<br>
Mobile: (+91) 9868572706 <br /><br>
</div>
<div class="col-12 col-lg-4 text-center">
<strong>Archit Goswami</strong><br>
(Student Section Representative)<br>
Mobile: (+91) 9650049733<br><br />
</div>
<div class="col-12 col-lg-4 text-center">
<strong>Nikhil Mishra</strong><br>
(Chairperson, IEEE DTU)<br>
Mobile: (+91) 9650049733<br>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-12" style="color: white;">
<figure class="footer-logo">
<a href="#"><img src="images/logo.png" alt="logo"></a>
</figure>
<nav class="footer-navigation">
<ul style="list-style: none;" class="flex flex-wrap justify-content-center align-items-center">
<li><a href="#">Home</a></li>
<li><a href="#about">About us</a></li>
<li><a href="#speakers">Speakers</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Developed by IEEE DTU<br> </a>
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved </a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
<div class="footer-social">
<ol style="list-style-type: none" class="flex flex-wrap justify-content-center align-items-center">
<li><a href="https://www.facebook.com/ieeedsc/" target="_blank"><i class="fa fa-facebook"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<div class="back-to-top flex justify-content-center align-items-center">
<span><svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"/></svg></span>
</div>
<script type='text/javascript' src='js/jquery.js'></script>
<script type='text/javascript' src='js/masonry.pkgd.min.js'></script>
<script type='text/javascript' src='js/jquery.collapsible.min.js'></script>
<script type='text/javascript' src='js/swiper.min.js'></script>
<script type='text/javascript' src='js/jquery.countdown.min.js'></script>
<script type='text/javascript' src='js/circle-progress.min.js'></script>
<script type='text/javascript' src='js/jquery.countTo.min.js'></script>
<script type='text/javascript' src='js/custom.js'></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-23581568-13"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-23581568-13');
</script>
</body>
</html>