-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
886 lines (816 loc) · 31.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.scontent{
color:white;
text-transform: uppercase;
}
</style>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="TemplateMo" />
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/swiffy-slider@1.2.0/dist/js/swiffy-slider.min.js" crossorigin="anonymous" defer></script>
<link href="https://cdn.jsdelivr.net/npm/swiffy-slider@1.2.0/dist/css/swiffy-slider.min.css" rel="stylesheet" crossorigin="anonymous">
<link
href="https://fonts.googleapis.com/css?family=Roboto+Slab|Comfortaa"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&display=swap" rel="stylesheet">
<title>Delcon 2022</title>
<!-- Additional CSS Files -->
<link
rel="stylesheet"
type="text/css"
href="assets/css/bootstrap.min.css"
/>
<link rel="stylesheet" type="text/css" href="assets/css/font-awesome.css" />
<link rel="stylesheet" type="text/css" href="assets/css/index.css" />
<link rel="stylesheet" href="assets/css/templatemo-lava.css" />
<link rel="stylesheet" href="assets/css/owl-carousel.css" />
<style>
body {
overflow-x: hidden;
}
</style>
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
// Add the new slick-theme.css if you want the default styling
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css"/>
</head>
<body>
<!-- ***** Preloader Start ***** -->
<!-- <div id="preloader">
<div class="jumper">
<div></div>
<div></div>
<div></div>
</div>
</div> -->
<!-- ***** Preloader End ***** -->
<div
class="container-fluid fixed-top head-icon"
style="height: 7rem; position: fixed; background-color: white;border-bottom: 3px solid #007bff; padding: 0.4em;"
>
<div class="row" style="height: 100%;">
<div
class="logoicon"
>
<a href="https://www.ieeensut.com/" target="_blank"
><img
src="logos/ieee_newlogo.png"
style="height: 100%;"
/></a>
</div>
<div
class="logoicon"
>
<a href="https://ewh.ieee.org/r10/delhi/" target="_blank"
><img
src="assets/images/logos/ieee_ds_black.png"
style="height: 100%;"
/></a>
</div>
<div
class="logoicon"
>
<a href="https://www.delcon2021.com/" target="_blank"
><img
src="logos/delcon2.png"
style="height: 100%;"
/></a>
</div>
<div
class="logoicon"
>
<a href="https://students.ieee.org/" target="_blank"
><img
src="logos/IEEE_Students_TYPE_Black_RGB.png"
style="height: 100%;"
/></a>
</div>
<!-- <div
class="col-7 col-md-3 icon"
style="text-align: center; height: 90%; padding: 0;"
>
<a href="https://site.ieee.org/indiacouncil/" target="_blank"
><img
src="logos/india_council.png"
style="margin-left: 30px; height: 100%;"
/></a>
</div> -->
<!-- <div
class="col-7 col-md-2 icon"
style="text-align: center; height: 90%;"
>
<a href="http://nsut.ac.in/" target="_blank"
><img src="logos/nsut.png" style="height: 90%; margin-top: 7px;"
/></a>
</div> -->
<div
class="logoicon"
>
<a target="_blank" href="https://ias.ieee.org/">
<img src="assets/images/logos/ias-logo.png"
style="height: 90%; margin-top: 7px;"/>
</a>
</div>
<div
class="logoicon"
>
<a target="_blank" href="http://ieeecss.org">
<img src="assets/images/logos/ieee css.jpg"
style="height: 90%; margin-top: 7px;"/>
</a>
</div>
<div
class="logoicon"
>
<a href="https://ieee.org"
><img
src="logos/ieeehome.png"
style="margin-left: 17px; height: 90%; margin-top: 7px;"
/></a>
</div>
<div
class="logoicon"
>
<a href="https://www.ppsinternational.in/"
><img
src=".../../assets/images/ppsinternations.jpeg"
style="margin-left: 17px; height: 120%; margin-top: 0px;"
/></a>
</div>
<div
class="logoicon"
>
<a href="https://titagarh.in/"
><img
src=".../../assets/images/corposponsi2.jpg"
style="margin-left: 17px; height: 120%; margin-top: 0px;"
/></a>
</div>
<!--
<div
class="col-7 col-md-1 icon"
style="text-align: center; height: 90%;"
>
<a target="_blank" href="https://www.ieee-pes.org/"
><img src="assets/images/logos/IEEE-PES.png" style="height: 90%; margin-top: 7px;"
/></a>
</div> -->
</div>
</div>
<div style="height: 5px;background-color: red;position: relative;top:0px;z-index: 100;"></div>
</div>
<!-- ***** Header Area Start ***** -->
<header class="header-area header-sticky" style="margin-top: 6rem;">
<div class="container">
<div class="row">
<div class="col-12" style="padding-left: 0px;">
<nav class="main-nav">
<!-- ***** Logo Start ***** -->
<!-- <a
href="index.html"
class="logo"
style="color: rgb(255, 255, 255);"
>
IEEE
</a> -->
<a
href="#"
class="logo"
style="color: rgb(255, 255, 255); padding-bottom: 50px;"
>
<img
src="assets/images/logos/delconinvert2.png"
class="inverted"
/>
<img
src="logos/delcon2.png"
class="normalLogo"
/>
</a>
<!-- ***** Logo End ***** -->
<!-- ***** Menu Start ***** -->
<ul class="nav">
<li class="scroll-to-section">
<a href="#welcome" class="menu-item">Home</a>
</li>
<li class="scroll-to-section">
<a href="#about" class="menu-item">About</a>
</li>
<li class="submenu">
<a href="javascript:;">Author Section</a>
<ul>
<li>
<a href="author_section/call_for_papers.html"
>Call for Papers</a
>
</li>
<li>
<a href="author_section/call_for_tutorial.html"
>Call for Tutorial Proposal</a
>
</li>
<li>
<a href="author_section/wie.html">Special WIE Track</a>
</li>
<!-- <li>
<a href="" class="menu-item"
>Call for Workshop Proposal</a
>
</li> -->
</ul>
</li>
<!-- <li>
<a href="tutorial.html">Tutorial</a>
</li> -->
<!-- <li>
<a href="schedule.html">Schedule</a>
</li> -->
<li>
<a href="presentation.html">Presentation</a>
</li>
<li class="submenu">
<a href="javascript:;">Committee</a>
<ul>
<li><a href="committee/oc.html">Organizing</a></li>
<li>
<a href="committee/track_chair.html">Track Chairs</a>
</li>
<li>
<a href="committee/stud_team.html">Student team</a>
</li>
</ul>
</li>
<!-- <li class="submenu">
<a href="javascript:;">Venue</a>
<ul>
<li><a href="travel.html">Transport</a></li>
<li>
<a href="accomodations.html">Accomodations</a>
</li>
<li>
<a href="visa.html">Visa</a>
</li>
</ul>
</li> -->
<li>
<a href="venue.html">Venue</a>
</li>
<li>
<a href="#timeline">Timeline</a>
</li>
<li>
<a href="registration.html">Registration</a>
</li>
<li class="scroll-to-section">
<a href="#sponsors" class="menu-item">Sponsors</a>
</li>
<!-- <li>
<a href="travel.html">Travel</a>
</li>-->
</ul>
<a class="menu-trigger">
<span>Menu</span>
</a>
<!-- ***** Menu End ***** -->
</nav>
</div>
</div>
</div>
</header>
<!-- ***** Header Area End ***** -->
<!-- ***** Welcome Area Start ***** -->
<!-- -->
<div class="welcome-area" id="welcome" style="height: 190vh;">
<!-- ***** Header Text Start ***** -->
<div class="header-text">
<div class="container">
<div class="row">
<!-- col-md-12 col-sm-12 col-xs-12 -->
<div
class="left-text col-lg-6 col-md-6 col-sm-6"
data-scroll-reveal="enter left move 30px over 0.6s after 0.4s"
>
<h1 style="color: azure; opacity: 0.8;">
IEEE DELCON <br />
<em style="color: #007bff; opacity: 0.6;">2022</em>
</h1>
<h2 style=" margin-top: 15px; padding-left: 10px; color: azure; opacity: 0.8;">
The Maiden Edition of IEEE Delhi Section International Conference on Electrical, Electronics and Computer Engineering
<br /><br />
IEEE DELCON-2022 would be in virtual mode.
</h2>
<div class="main-date">11th-13th February 2022</div>
<p
class="col-12"
style="margin-top: 0; padding-top: 5px; font-size: 20px;"
>
<strong>
Technology Intervention to Build Future-Ready Society
</strong>
</p>
<!-- <p
class="col-12"
style="
margin-top: 0;
font-size: 19px;
transform: translateY(-20px);
"
>
Venue: Netaji Subhas University of Technology, New Delhi
</p> -->
<!-- <a href="#about" class="main-button-slider">KNOW US BETTER</a> -->
<div
class="clock"
style="color: black; width: 100%; max-width: 100vw;"
>
<ul style="width: 100%; width: 100vw;">
<li><span id="days"></span>Days</li>
<li><span id="hours"></span>Hours</li>
<li><span id="minutes"></span>Minutes</li>
<li><span id="seconds"></span>Seconds</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- ***** Header Text End ***** -->
<script>
const second = 1000,
minute = second * 60,
hour = minute * 60,
day = hour * 24;
let countDown = new Date("Feb 11, 2022 00:00:00").getTime(),
x = setInterval(function () {
let now = new Date().getTime(),
distance = countDown - now;
(document.getElementById("days").innerText = Math.floor(
distance / day
)),
(document.getElementById("hours").innerText = Math.floor(
(distance % day) / hour
)),
(document.getElementById("minutes").innerText = Math.floor(
(distance % hour) / minute
)),
(document.getElementById("seconds").innerText = Math.floor(
(distance % minute) / second
));
}, second);
</script>
</div>
<!-- ***** Welcome Area End ***** -->
<!-- ***** Features Big Item Start ***** -->
<div
id="about"
class="blueBand section"
style="transform: translateY(-100px);"
>
<h1>About</h1>
</div>
<section class="section mb-lg-6" id="about">
<div class="container">
<div class="row" style="justify-content: space-around;">
<div
class="col-lg-8 col-md-6 col-sm-12 col-xs-12 mb-5"
data-scroll-reveal="enter left move 30px over 0.6s after 0.4s"
>
<div class="features-item">
<div class="features-icon">
<h2>INDIA</h2>
<img src="assets/images/delcon-logo2.jpeg" alt="" />
<p style=" font-size: 0.8em;">
The maiden "IEEE Delhi Section International Conference on Electrical, Electronics and Computer Engineering (DELCON-2022)" is one of the finest International Conference covering broad topics in the areas of Electrical, Computer and Electronics Engineering, will be organized this year by Netaji Subhas University of Technology, Dwarka, New Delhi, India. DELCON conference will be organized annually at various locations in Delhi Section. This conference will provide an excellent platform to the researchers to present their research work and will be known as the Delhi-section's conference. The conference is technically and financially sponsored by IEEE Delhi Section. There are multiple tracks in the conference covering almost all areas of Electrical, Computer & Electronics Engineering.
</br>
All accepted & presented papers of the conference by duly registered authors will be submitted to IEEE Xplore for Publication (Conference Record Number: #54057). DELCON proceedings are indexed by SCOPUS and Google Scholar.
</p>
<div style="height: auto;display: flex;justify-content: center;align-items: center;">
<a
href="https://edas.info/N29163"
target="_blank"
class="main-button"
>
Submit Papers
</a>
</div>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 col-sm-12 col-xs-12 mb-5"
data-scroll-reveal="enter bottom move 30px over 0.6s after 0.4s"
>
<div class="features-item">
<div class="features-icon">
<h2>IEEE</h2>
<img src="assets/images/logos/ieee_ds_black.png" alt="" />
<p>
Delhi Section is one of the 12 Sections in India coming under Asia-Pacific Region, the Region 10 of IEEE. At present it covers entire northern part of the country consisting of the four states of Rajasthan, Haryana, Punjab, Himachal Pradesh, and the National Capital Territory of Delhi, Union Territories of Chandigarh, Jammu & Kashmir, Ladakh. IEEE Delhi Section, which started on May 13, 1976 (after remaining as Sub-section since 1974).
</p>
<!-- <div style="height: auto;display: flex;justify-content: center;align-items: center;"> -->
<a
style="margin-top: 0;"
href="https://ewh.ieee.org/r10/delhi/"
target="_blank"
class="main-button bt2"
>
More
</a>
<!-- </div> -->
</div>
</div>
</div>
</div>
</div>
</section>
<script>
</script>
<!-- ***** Features Big Item End ***** -->
<!-- Tracks -->
<div class="section mb-5 container drop" style="padding: 0;">
<div class="your-class" style="background-image: url('assets/images/white-background-with-blue-tech-hexagon_1017-19366.jpg');background-position: right;background-size:auto;">
<div class=".scontent">
<div style="padding: 10px 10px;">
<div style="display: inline-block;padding: 0rem 0rem;text-transform: uppercase;font-weight: 700;color:white;background-color: #007bff;padding:.2rem .5rem;margin-bottom: .3rem;">
Important Update :
</div>
<div class="updates">
<h3><a href="presentation.html" class="updt1">
Refer the Presentation page for detail info on Submission of Video Presentation.
Last date for Final Manuscript Submission and Video Presentation Submission Updated- 2nd February,2022 23:59 Hours.
</br>
Strictly Comply to the Template format provided for Final Manuscript and Video Presentation
</a>
<span class="badge rounded-pill bg-info text-dark" class="bdgupdt">
<i>
Alert
</i>
</span></h3>
</div>
<h1 class="h1" style="letter-spacing: .2rem;text-transform: uppercase;font-weight: 400;color: #007bff;font-family: 'Noto Sans', sans-serif;"></h1>
<a href="author_section/call_for_papers.html#papersublink" class="main-button" style="padding: 5px 20px;font-weight: 400;margin-top: 1rem;display: inline-block;">
View
</a>
</div>
</div>
</div>
</div>
<div id="timeline" class="blueBand section">
<h1>Important Dates</h1>
</div>
<div id="leftImage">
<div class="page">
<div class="timeline">
<div class="timeline__group">
<!-- <span class="timeline__year">20020</span> -->
<div class="timeline__box">
<div class="timeline__date">
<span class="timeline__day">1</span>
<span class="timeline__month">June</span>
</div>
<div class="timeline__post">
<div class="timeline__content">
<p>Starting Date for Submission of Full Paper</p>
</div>
</div>
</div>
<!-- <div class="timeline__box">
<div class="timeline__date">
<span class="timeline__day">31</span>
<span class="timeline__month">July</span>
</div>
<div class="timeline__post">
<div class="timeline__content">
<p>
Abstract Submission
</p>
</div>
</div>
</div> -->
<div class="timeline__box">
<div class="timeline__date">
<span class="timeline__day">31</span>
<span class="timeline__month">December</span>
</div>
<div class="timeline__post">
<div class="timeline__content">
<p>
Full Paper Submission
</p>
</div>
</div>
</div>
<div class="timeline__box">
<div class="timeline__date">
<span class="timeline__day">15</span>
<span class="timeline__month">January</span>
</div>
<div class="timeline__post">
<div class="timeline__content">
<p >
Acceptance Notification
</p>
</div>
</div>
</div>
<div class="timeline__box">
<div class="timeline__date">
<span class="timeline__day">25</span>
<span class="timeline__month">January</span>
</div>
<div class="timeline__post">
<div class="timeline__content">
<p>Last date for Registration</p>
</div>
</div>
</div>
<div class="timeline__box">
<div class="timeline__date">
<span class="timeline__day">2</span>
<span class="timeline__month">February</span>
</div>
<div class="timeline__post">
<div class="timeline__content">
<p>Final Paper Submission</p>
</div>
</div>
</div>
<!-- <div class="timeline__box">
<div class="timeline__date">
<span class="timeline__day">30</span>
<span class="timeline__month">November</span>
</div>
<div class="timeline__post">
<div class="timeline__content">
<p>Registration End Date</p>
</div>
</div>
</div> -->
</div>
</div>
</div>
</div>
<!-- sponsors -->
<div id="sponsors" class="lineup-artists-headline">
<div class="sponsor-title">
<h2>Our Sponsors</h2>
</div>
<div class="sub-sponsor-title text-lefts">
<h2>Financial Sponsor</h2>
</div>
<div class="sponsor-section">
<div class="container">
<div class="col-sm">
<a target="_blank" href="https://ewh.ieee.org/r10/delhi/"
><img src="assets/images/logos/ieee_ds_black.png" alt="3"
/></a>
</div>
</div>
</div>
<div class="sub-sponsor-title text-lefts">
<h2>Corporate Sponsor</h2>
</div>
<div class="sponsi-corpo">
<div class="sponsor-section">
<div class="container">
<div class="col-sm">
<a target="_blank" href="https://www.ppsinternational.in/"
><img src="./assets/images//ppsinternations.jpeg" alt="3"
/></a>
</div>
</div>
</div>
<div class="sponsor-section">
<div class="container">
<div class="col-sm">
<a target="_blank" href="https://titagarh.in/"
><img src="./assets/images/corposponsi2.jpg" alt="3"
/></a>
</div>
</div>
</div>
</div>
<div class="sub-sponsor-title">
<h2>Technical Co-Sponsor</h2>
</div>
<div class="sponsor-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-sm">
<a target="_blank" href="https://ias.ieee.org/"
><img src="assets/images/logos/ias-logo.png" alt="1"
/></a>
</div>
<div class="col-sm">
<a target="_blank" href="https://www.ieee-pes.org/"
><img src="assets/images/logos/IEEE_Students.png" alt="2"
/></a>
</div>
<div class="col-sm">
<a target="_blank" href="http://ieeecss.org"
><img src="assets/images/logos/ieee css.jpg"alt="3"/>
</a>
</div>
<!-- <div class="col-sm">
<a target="_blank" href="https://ias.ieee.org/"
><img src="assets/images/logos/ieee-pels-logo.png" alt="1"
/></a>
</div>
</div>
</div>
</div>
<div class="sub-sponsor-title">
<h2>Corporate Collaborations</h2>
</div>
<div class="sponsor-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-sm">
</div>
<div class="col-sm">
<a target="_blank" href="http://www.ppsinternational.in/"
><img src="assets/images/logos/pps.png" alt="1"
/></a>
</div>
</div>
</div>
</div>
</div>
-->
</div>
<div
class="row text-center my-4"
style="font-size: 2rem; padding-top: 2rem;"
>
<div class="col-12 font-weight-bold">
<a href="Delcon Brochure.pdf" target="_blank">Sponsorship Brochure</a>
</div>
</div>
<!-- sponsors end -->
<!-- ***** Footer Start ***** -->
<footer id="contact-us">
<div class="sponsor-title" style="padding-bottom: 40px;">
<h2>Contact Us</h2>
</div>
<div style="padding-bottom: 80px;">
<h3 style="justify-content: center; display: flex; font-size: 35px;">Prof. Prerna Gaur</h4>
<h4 style="justify-content: center; display: flex; font-size: 20px;">Email : <a href="mailto:prernagaur@nsut.ac.in">prernagaur@nsut.ac.in</a></h5>
<h4 style="justify-content: center; display: flex; font-size: 20px;">Phone no.- 9810906245</h5>
</div>
<div class="container">
<div class="footer-content">
<div class="row">
<!-- ***** Contact Form Start ***** -->
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="contact-form" style="background: transparent;">
<div class="swiffy-slider">
<ul class="slider-container">
<li><img src="/assets/images/carousel1.jpeg" style="max-width: 100%;height: auto;"></li>
<li><img src="/assets/images/carousel2.jpeg" style="max-width: 100%;height: auto;"></li>
<li><img src="/assets/images/carousel3.jpeg" style="max-width: 100%;height: auto;"></li>
<li><img src="/assets/images/carousel4.jpeg" style="max-width: 100%;height: auto;"></li>
</ul>
<button type="button" class="slider-nav"></button>
<button type="button" class="slider-nav slider-nav-next"></button>
<div class="slider-indicators">
<button class="active"></button>
<button></button>
<button></button>
</div>
</div>
</div>
</div>
<!-- ***** Contact Form End ***** -->
<div class="right-content col-lg-6 col-md-12 col-sm-12">
<h2>About <em style="color: #8b0808;">IEEE Delhi section</em></h2>
<p>
</p>
<ul class="social">
<li>
<a href="https://www.facebook.com/groups/delhi.ieee/"
><i class="fa fa-facebook"></i
></a>
</li>
<!-- <li>
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-linkedin"></i></a>
</li> -->
<li>
<a href="mailto:delcon2021@nsut.ac.in"
><i class="fa fa-envelope-square"></i
></a>
</li>
<li>
<a href="https://ewh.ieee.org/r10/delhi/"
><i class="fa fa-dribbble"></i
></a>
</li>
</ul>
<!-- <p><br/>
9810906245 (Prof. Prerna Gaur)
</p> -->
</div>
</div>
<div class="row">
<div class="col-lg-1 col-md-12 col-sm-12" style="margin: 0 auto;">
<!-- <div class="contact-form">
<div class="google-maps"><div class="gmap_canvas" style="border:1px solid black;"><iframe width="100%" height="100%" id="gmap_canvas" src="https://maps.google.com/maps?q=nsut&t=&z=13&ie=UTF8&iwloc=&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe><a href="https://www.embedgooglemap.net/blog/best-vpn/">top 10 best vpn services by embedgooglemap.net</a></div>
<style>
.mapouter{
position:relative;
text-align:right;
height:600px;
width:450px;
}
.gmap_canvas {overflow:hidden;
background:none!important;
height:600px;
width:450px;
}
.google-maps {
position: relative;
padding-bottom: 75%;
height: 0;
overflow: hidden;
}
.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}</style>
</div>
</div> -->
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="sub-footer">
<p>
© 2022 IEEE – All rights reserved.
</p>
<p>
A not-for-profit organization, IEEE is the world's largest technical professional organization dedicated to advancing technology for the benefit of humanity.
</p>
</div>
</div>
</div>
</div>
</footer>
<!-- jquery -->
<script src="assets/js/jquery-2.1.0.min.js"></script>
<!-- Bootstrap -->
<script src="assets/js/popper.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<!-- Plugins -->
<script src="assets/js/owl-carousel.js"></script>
<script src="assets/js/scrollreveal.min.js"></script>
<script src="assets/js/waypoints.min.js"></script>
<script src="assets/js/jquery.counterup.min.js"></script>
<script src="assets/js/imgfix.min.js"></script>
<!-- Global Init -->
<script src="assets/js/custom.js"></script>
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.your-class').slick({
});
});
</script>
<!-- NET -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r121/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.rings.min.js"></script>
<script>
VANTA.RINGS({
el: "#welcome",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00
});
$('#next').on('click',function(){
$('.carousels').carousel('cycle')
});
</script>
</body>
</html>