-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1512 lines (1433 loc) · 77.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- ========== Meta Tags ========== -->
<meta charset="UTF-8">
<meta name="description" content="Evento -Event Html Template">
<meta name="keywords" content="Evento , Event , Html, Template">
<meta name="author" content="ColorLib">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- ========== Title ========== -->
<title>TEDxNSUT</title>
<!-- ========== Favicon Ico ========== -->
<link rel="icon" href="assets/img/logo.png">
<!-- ========== STYLESHEETS ========== -->
<!-- Bootstrap CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/media.css">
<!-- Fonts Icon CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/et-line.css" rel="stylesheet">
<link href="assets/css/ionicons.min.css" rel="stylesheet">
<!-- Carousel CSS -->
<link href="assets/css/owl.carousel.min.css" rel="stylesheet">
<link href="assets/css/owl.theme.default.min.css" rel="stylesheet">
<!-- Animate CSS -->
<link rel="stylesheet" href="assets/css/animate.min.css">
<!-- Custom styles for this template -->
<link href="assets/css/main.css" rel="stylesheet">
<!-- my css file -->
<link rel="stylesheet" href="index.css">
<!--counter-->
<link rel="stylesheet" href="assets/css/counter.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css">
</head>
<body>
<div class="loader">
<div class="loader-outter"></div>
<div class="loader-inner"></div>
</div>
<!--header start here -->
<header class="header navbar fixed-top navbar-expand-md">
<div class="container">
<a class="navbar-brand logo" href="#">
<img src="assets/img/logo.png" alt="Evento" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#headernav"
aria-expanded="false" aria-label="Toggle navigation">
<span class="lnr lnr-text-align-right"></span>
</button>
<div class="collapse navbar-collapse flex-sm-row-reverse" id="headernav">
<ul class=" nav navbar-nav menu">
<li class="nav-item">
<a class="nav-link" href="#Home"><span style="color: #FF2A05">Home</span></a>
</li>
<li class="nav-item">
<a class="nav-link " href="#Event">Event</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link " href="#part3">Our Speakers</a>
</li> -->
<li class="nav-item" onclick="alert('Registrations Closed')">
<a class="nav-link " href="#" >Register</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#Past.Speakers">Past Speakers</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#Contact">Contact</a>
</li>
</ul>
</div>
</div>
</header>
<!--header end here-->
<!-- cover section slider
<section id="home" class="home-cover">
<div class="cover_slider owl-carousel owl-theme">
<div class="cover_item" style="background: url('assets/img/bg/slider.png');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-center">
<h2 class="cover-title">
Prepare yourself for the
</h2>
<strong class="cover-xl-text">conference</strong>
<p class="cover-date">
12-14 February 2018 - Los Angeles, CA.
</p>
<a href="#" class=" btn btn-primary btn-rounded" >
Buy Tickets Now
</a>
</div>
</div>
</div>
</div>
</div>
<div class="cover_item" style="background: url('assets/img/bg/slider.png');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-left">
<h2 class="cover-title">
Prepare yourself for the
</h2>
<strong class="cover-xl-text">conference</strong>
<p class="cover-date">
12-14 February 2018 - Los Angeles, CA.
</p>
<a href="#" class=" btn btn-primary btn-rounded" >
Buy Tickets Now
</a>
</div>
</div>
</div>
</div>
</div>
<div class="cover_item" style="background: url('assets/img/bg/slider.png');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-center">
<h2 class="cover-title">
Prepare yourself for the
</h2>
<strong class="cover-xl-text">conference</strong>
<p class="cover-date">
12-14 February 2018 - Los Angeles, CA.
</p>
<a href="#" class=" btn btn-primary btn-rounded" >
Buy Tickets Now
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cover_nav">
<ul class="cover_dots">
<li class="active" data="0"><span>1</span></li>
<li data="1"><span>2</span></li>
<li data="2"><span>3</span></li>
</ul>
</div>
</section> -->
<!--cover section slider end -->
<!-- my header -->
<div style="height: 400px;" id="Home">
<div id="particles-js">
<!-- <img src="assets/img/logo.png" alt="Evento" /> -->
</div>
<div class="text">
<!-- <h1>Hello world</h1> -->
<!-- <div style="position: absolute; top: 0px; left: 0px"> -->
<img id="logo" src="assets/img/logo3.png" alt="Evento" />
<!-- </div> -->
</div>
</div>
<!-- my header end -->
<!--event info -->
<div style="padding-top: 250px;">
<section class="pt100 pb100">
<div class="container">
<div class="row justify-content-center">
<div class="col-6 col-md-3 ">
<div class="icon_box_two">
<i class="ion-ios-calendar-outline"></i>
<div class="content">
<h5 class="box_title" style="color: #EC2B08">
DATE
</h5>
<p>
16 April 2022
<!-- 13 October 2019 -->
</p>
</div>
</div>
</div>
<div class="col-6 col-md-3 ">
<div class="icon_box_two">
<i class="ion-ios-location-outline"></i>
<div class="content">
<h5 class="box_title" style="color: #EC2B08">
location
</h5>
<p>
NSUT, Dwarka.
</p>
</div>
</div>
</div>
<div class="col-6 col-md-3 ">
<div class="icon_box_two">
<i class="ion-ios-person-outline"></i>
<div class="content">
<h5 class="box_title" style="color: #EC2B08">
speakers
</h5>
<p>
8 Speakers
<!-- 9 -->
</p>
</div>
</div>
</div>
<div class="col-6 col-md-3 ">
<div class="icon_box_two">
<i class="ion-ios-pricetag-outline"></i>
<div class="content">
<h5 class="box_title" style="color: #EC2B08">
tickets
</h5>
<p style="text-align:center">
Free Registration
</p>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!--event info end -->
<!-- < event countdown -->
<!-- original countdown -->
<!-- <section class="bg-img pt70 pb70" style="background-image: url('');">
<div class="overlay_dark"></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<h4 class="mb30 text-center color-light"> COUNTDOWN BEGINS ! </h4>
<div class="countdown"></div>
</div>
</div>
</div>
</section> -->
<!-- // gaurav countdown -->
<!-- <div class="container c1">
<h1 id="head">Countdown for the event ! </h1>
<ul style="display:inline;">
<li><span id="days"
style=" display: inline-block; font-size: 4.5rem;list-style-type: none; padding: 1em;"></span>days
</li>
<li><span id="hours"
style=" display: inline-block; font-size: 4.5rem;list-style-type: none; padding: 1em;"></span>Hours
</li>
<li><span id="minutes"
style=" display: inline-block; font-size: 4.5rem;list-style-type: none; padding: 1em;"></span>Minutes
</li>
<li><span id="seconds"
style=" display: inline-block; font-size: 4.5rem;list-style-type: none; padding: 1em;"></span>Seconds
</li>
</ul>
</div> -->
<!-- arpit countdown -->
<!-- <h1>COUNTDOWN</h1>
<div id="clockdiv">
<div>
<span class="days"></span>
<div class="smalltext">Days</div>
</div>
<div>
<span class="hours"></span>
<div class="smalltext">Hours</div>
</div>
<div>
<span class="minutes"></span>
<div class="smalltext">Minutes</div>
</div>
<div>
<span class="seconds"></span>
<div class="smalltext">Seconds</div>
</div>
</div>-->
<!-- arpit countdown end -->
<!--event count down end-->
<button type="button" onclick="alert('Registrations Closed')" class="buttons">Register Now</button>
<!--about the event -->
<section class="pt100 pb100" id="Event">
<div class="container">
<div class="section_title">
<h3 class="title color-light">
About the event
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-6">
<p>
TEDx is a program of local, self-organized events that bring people together to share a TED-like experience.
At a TEDx event, TED Talks video and live speakers combine to spark deep discussion and connection. TEDx is a
platform used to galvanize and bring a positive and impactful change in a person's belief. These local, self-organized
events are branded TEDx, where x = independently organized TED event.
</p>
</div>
<div class="col-12 col-md-6">
<p>
At TEDxNSUT, we are known for creating not only a conference but also a Community during the process.
We host one highly anticipated Conference annually. Our speakers spark conversations through their creative,
innovative, and inspiring messages. Our team of student volunteers makes it their mission to find and disseminate
the best ideas to the biggest possible audience.
</p>
</div>
</div>
<!--event features-->
<div class="row justify-content-center mt30">
<div class="col-12 col-md-6 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-mic"></i>
<div class="content">
<h4>KeyNote Speakers:</h4>
<p>
One Stage. Get ready to explore the exclusive experiences of some of the country's most
talented minds.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-rocket"></i>
<div class="content">
<h4>8 hrs Marathon</h4>
<p>
The zeal to spread awareness and knowledge through this extravaganza of influential
talks shall make this 8 hour
long affair an indelible part of your memories.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-bullhorn"></i>
<div class="content">
<h4>Digital Audience:</h4>
<p>
Witness the TEDx talks from every corner of the world. Because we believe that great
stories should not be left unheard.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-clock"></i>
<div class="content">
<h4> TEDx:</h4>
<p>
The 'x' in TEDx signifies Independence from the shackles of shadow and brings sunshine.
The 'x' is a variable which one can use to enrich culture and etiquette across individuals, society, and even countries.
</p>
</div>
</div>
</div>
</div>
<!--event features end-->
</div>
</section>
<!--about the event end -->
<!--present speaker section-->
<section class="pb100" id="Past.Speakers">
<!-- <div class="container">
<div class="section_title mb50">
<h3 class="title color-light">
our speakers
</h3>
</div>
</div> -->
<!-- <div class="row justify-content-center no-gutters">
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s1.png" alt="Avatar">
<div class="info_box">
<h5 class="name">KYOSHI NAVAL DUTTA</h5>
<p class="position">Martial Artist</p>
</div>
<div class="overlay">
<h6 class=" text color-light">KYOSHI NAVAL DUTTA</h6>
<p class="text">
<br><br>
An ingenious man with an exemplary set of skills
in Martial Arts, Kyoshi Naval Datta has recently
earned the mentioned title and is now a “7th Dan”
black belt from Japan and “5th Dan” black belt from WKF.
Kyoshi is an expert at teaching pressure point based MartialArts) and sword.
</p>
</div>
</div> -->
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
<!-- </div>
</div>
</div> -->
<!-- <div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s2.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">TEMSUTULA IMSONG</h5>
<p class="position">Social Worker</p>
</div>
<div class="overlay">
<h6 class=" text color-light">TEMSUTULA IMSONG</h6>
<p class="text">
<br><br>
Born and brought up in Ungma village, Mokokchung District in Nagaland,
Temsutula Imsong believes that ‘Cleaning and organizing is a
practice not a project.’ The eco friendly practices like sanitation,
etc have been the way of life since her childhood and still continue
to grow and set an example.
</p>
</div>
</div> -->
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
<!-- </div>
</div>
</div> -->
<!-- <div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s3.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">Lt. VIVEK PANWAR</h5>
<p class="position">Luitenent Colonel</p>
</div>
<div class="overlay">
<h6 class=" text color-light">Lt. VIVEK PANWAR</h6>
<p class="text">
<br><br>
After graduating from NSIT in 2002 as a computer science engineer, Lt.
Vivek Panwar got commissioned in the Indian army in July 2003. His first
tenure in the army was at Siachen Glacier, the highest battleground on
Earth, where he was honored with his 1st Gallantry award within a year.
</p>
</div>
</div> -->
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
<!-- </div>
</div>
</div> -->
<!-- <div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s4.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">RAGHAV PANDEY</h5>
<p class="position">Professor</p>
</div>
<div class="overlay">
<h6 class=" text color-light">RAGHAV PANDEY</h6>
<p class="text">
<br><br>
A remarkable man who had always been inspired to be a teacher, Raghav Pandey
is currently working as an assistant professor of Law at Maharashtra National
Law University, Mumbai and also a Senior Research Fellow at the Department
of Humanities and Social Sciences, IIT Bombay.
</p>
</div>
</div> -->
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
<!-- </div>
</div>
</div> -->
<!-- <div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s5.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">KIRAN VERMA</h5>
<p class="position"> CEO </p>
</div>
<div class="overlay">
<h6 class=" text color-light">KIRAN VERMA</h6>
<p class="text">
<br><br>
Kiran Verma is the CEO of Simply Blood which is the world’s first Virtual blood Donation
Platform. He was born in a lower middle class family in East Delhi and never completed
his formal education, he lost his mother due to cancer at age of 7, this accident left
a deep impact on him and he got to know the importance of life.
</p>
</div>
</div> -->
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
<!-- </div>
</div>
</div> -->
<!-- <div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s6.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">LAKSHAY DABAS</h5>
<p class="position">Organic Farmer</p>
</div>
<div class="overlay">
<h6 class=" text color-light">LAKSHAY DABAS</h6>
<p class="text">
<br><br>
Lakshay is a man of multiple talents, apart from being an organic farmer,he is
also a guitarist who has performed at The Hard rock Cafe on various occasions.
His journey as a guitarist started in college, where he was a part of his college
band HundredOctane. It was his father's dream to spread goodwill through food.
</p>
</div>
</div> -->
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
<!-- </div>
</div>
</div> -->
<!-- <div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s7.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">HIMA DAS</h5>
<p class="position">Athlete</p>
</div>
<div class="overlay">
<h6 class=" text color-light">HIMA DAS</h6>
<p class="text">
<br><br>
Often Called ‘The Dhing Express’, Hima Das is a 19-year-old Indian sprinter hailing
from
Assam. Holder of the current Indian National Record in the 400 Metres with the
timing of
50.79s, she also became the first Indian woman, nay, the first ever Indian athlete
to win
a gold medal in any format of a global track event at IAAF.
</p>
</div>
</div> -->
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
<!-- </div>
</div>
</div> -->
<!-- <div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s8.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">VEDICA SAXENA</h5>
<p class="position">IT Engineer</p>
</div>
<div class="overlay">
<h6 class=" text color-light">VEDICA SAXENA</h6>
<p class="text">
<br><br>
Vedica Saxena is an IT engineer by qualification. She has been a soft skills trainer
for
corporates and colleges, a language & life skills trainer for schools, Miss South
Asia India
2007 runner up, a freelance emcee and above all a renowned blogger and an aspiring
writer
looking forward to starting a YouTube vlogging channel someday.
</p>
</div>
</div> -->
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
<!-- </div>
</div>
</div> -->
<!-- <div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s9.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">SEEDHE MAUT</h5>
<p class="position">Hip Hop Artist</p>
</div>
<div class="overlay">
<h6 class=" text color-light">SEEDHE MAUT</h6>
<p class="text">
<br><br>
Encore ABJ and MC Calm, are two delhiites who came together as "Seedhe Maut" to give
the next stage in the revolution of Indian hip hop sound. Inspired by international hip
hop collectives like Clipse,Black Hippy etc.,they have truly mastered the art
of delivering razor-sharp combative and witty rhymes.
</p>
</div>
</div> -->
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
<!-- </div>
</div>
</div>
</div>
</section> -->
<!--speaker section end -->
<!--event calender-->
<!--<section class="pb100" id="part4">
<div class="container">
<div class="table-responsive">
<table class="event_calender table">
<thead class="event_title">
<tr>
<th>
<i class="ion-ios-calendar-outline"></i>
<span>Event calendar</span>
</th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img src="assets/img/cleander/c1.png" alt="event">
</td>
<td class="event_date">
13
<span>October</span>
</td>
<td>
<div class="event_place">
<h5>NSUT, Dwarka Sector 3</h5>
<p>9 Speakers</p>
</div>
</td>
<td>
<div class="event_place">
<h5>NSUT, Dwarka Sector 3</h5>
<h5>09 AM - 05 PM</h5>
</div>
</td>
<td>
<a href="http://bit.ly/TEDxNSUT2019_Attendeeform" class="btn btn-primary btn-rounded">Get Tickets</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<event calender end -->
<section class="pb100" id="part5">
<div class="container">
<div class="section_title mb50">
<h3 class="title color-light">
Speakers
</h3>
</div>
</div>
<div class="row justify-content-center no-gutters">
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakerss/Taranpreet_Singh.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">Taranpreet Singh</h5>
<p class="position">CEO, Sleeplabs</p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">Taranpreet Singh</h6>
<p class="text">
<br><br>
Featured in “30 under 30” by IIT and IIM Indore for Social Entrepreneurship, Taranpreet Singh is the CEO of Sleeplabs, Delhi and Sharrk Ventures, California. The passionate entrepreneur took the first step in this journey of his by founding Deeproots in 2016 and later in 2018 started his corporate journey as an Account Manager at Mobisy Technologies Pvt. Ltd. and then moved on the Zee Laboratories Ltd. as Chief Growth Officer.
</p>
</div>
</div>
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakerss/Janhavi.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">Kalashree Janhavi Rajaraman</h5>
<p class="position">Professional Bharatnatyam Dancer</p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">Kalashree Janhavi Rajaraman</h6>
<p class="text">
<br><br>
An accomplished Bharatanatyam dancer, Kalashree Janhavi Rajaraman is an inspiration to all dancers and all artists in general.
Learning Bharatanatyam since she was 9 years old, she got the opportunity to perform her Arangetram in the year 2000 after years of hard work and dedication.
She adopted dancing as her profession and in no time she was requested to become a Guru at Lok Kala Manch and a teacher at Ganesa Natyalaya, the place she learnt her craft from.
</p>
</div>
</div>
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakerss/Prachi_&_Tapesh.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">Prachi & Tapesh</h5>
<p class="position">Pilots</p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">Prachi & Tapesh</h6>
<p class="text">
<br><br>
The pilot couple, Tapesh and Prachi, or as we know them as ‘Tapchi’, show us how to maintain one’s individuality while learning and depending on each other as life partners.
Capt. Tapesh Kumar, the owner of the YouTube channel, Boeing Boy, followed his passion for aviation, and became the youngest captain at the age of 25 and is currently the captain of Airbus A320.
</p>
</div>
</div>
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
</div>
</div>
</div>
</div>
<div class="row justify-content-center no-gutters">
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakerss/Chirag_Gupta.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">Chirag Gupta</h5>
<p class="position">FOUNDER, CEO 4700BC </p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">Chirag Gupta</h6>
<p class="text">
<br><br>
Chirag Gupta is considered a pioneer amongst pioneers for introducing a premium snacking experience in India. Upon completion of a Bachelors's in Computer Science Engineering in 2005, He joined Infosys as a software engineer.
After a Master's Degree from the United States, he joined Deloitte and worked as a Management Consultant till 2013, wherein he found his love for popcorn and the need to introduce the gourmet segment to the Indian Market.
</p>
</div>
</div>
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakerss/Praachi_Tiwari.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">Praachi Tiwari</h5>
<p class="position">Research Scholar, TIFR</p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">Praachi Tiwari</h6>
<p class="text">
<br><br>
Praachi Tiwari started her PhD at TIFR, Mumbai in 2016, where her fascination for neuroscience made her join Prof. Vidita Vaidya's lab. Prior to that, she completed her B.Tech in Biotechnology from NIT, Allahabad. Praachi has recieved many prestigious grants and awards like the Sun Pharma Science Scholar Award, Sarojini Damodaran fellowship, and recently, the Regional Social Media Ambassador grant for FENS Forum 2022.
</p>
</div>
</div>
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakerss/Surender_Mehra_IFS.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">Surender Mehra IFS,</h5>
<p class="position">Indian Forest Service</p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">Surender Mehra IFS,</h6>
<p class="text">
<br><br>
A 1999-batch IFS officer and an authority on wildlife management and laws, Surender Mehra, has vast experience working
in Protected Areas including his stint as Field Director of the world famous Corbett Tiger Reserve (CTR).
</p>
</div>
</div>
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
</div>
</div>
</div>
</div>
<div class="row justify-content-center no-gutters">
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakerss/Abhinav_Mathur.png" alt="Avatar" class = "image">
<div class="info_box">
<h5 class="name">Abhinav Mathur</h5>
<p class="position">Founder, Million Sparks Foundation</p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">Abhinav Mathur</h6>
<p class="text">
<br><br>
Having graduated from NSIT 1988 batch, Abhinav earned a PhD from IIT Delhi and an MBA from IIM Lucknow. He currently
holds the position of Senior Advisor to Niti Aayog's Vice Chairman.
In addition to being a renowned business strategist, Dr Mathur is the Founder and Chairman of Million S
parks Foundation (MSF) which promotes lifelong learning and continuous training for teachers and school leaders in order to improve student outcomes.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<!-- <img src="assets/img/speakers1/s8.png" alt="speaker name" class = "change"> -->
<img src="assets/img/speakerss/Mukesh_Gehlot.png" alt="Avatar" class = "image">
<div class="info_box">
<h5 class="name">Mukesh Gahlot</h5>
<p class="position">Bodybuilder, Powerlifter and Coach "Guru Ji"</p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">Mukesh Gahlot</h6>
<p class="text">
<br><br>
The quadruple winner of the Mr India title and holding a national record for the same, Mukesh Singh Gahlot, has represented India in various prestigious international competitions including the World Powerlifting Championship,
Olympia Pro Powerlifting Division and British Open Powerlifting Championship and won gold countless times.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--speaker section-->
<section class="pb100" id="part5">
<div class="container">
<div class="section_title mb50">
<h3 class="title color-light">
past speakers
</h3>
</div>
</div>
<div class="row justify-content-center no-gutters">
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s1.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">KYOSHI NAVAL DUTTA</h5>
<p class="position">Martial Artist</p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">KYOSHI NAVAL DUTTA</h6>
<p class="text">
<br><br>
An ingenious man with an exemplary set of skills
in Martial Arts, Kyoshi Naval Datta has recently
earned the mentioned title and is now a “7th Dan”
black belt from Japan and “5th Dan” black belt from WKF.
Kyoshi is an expert at teaching pressure point based MartialArts) and sword.
</p>
</div>
</div>
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s2.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">TEMSUTULA IMSONG</h5>
<p class="position">Social Worker</p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">TEMSUTULA IMSONG</h6>
<p class="text">
<br><br>
Born and brought up in Ungma village, Mokokchung District in Nagaland,
Temsutula Imsong believes that ‘Cleaning and organizing is a
practice not a project.’ The eco friendly practices like sanitation,
etc have been the way of life since her childhood and still continue
to grow and set an example.
</p>
</div>
</div>
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s3.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">Lt. VIVEK PANWAR</h5>
<p class="position">Luitenent Colonel</p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">Lt. VIVEK PANWAR</h6>
<p class="text">
<br><br>
After graduating from NSIT in 2002 as a computer science engineer, Lt.
Vivek Panwar got commissioned in the Indian army in July 2003. His first
tenure in the army was at Siachen Glacier, the highest battleground on
Earth, where he was honored with his 1st Gallantry award within a year.
</p>
</div>
</div>
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
</div>
</div>
</div>
</div>
<div class="row justify-content-center no-gutters">
<div class="col-md-3 col-sm-6">
<div class="speaker_box">
<div class="speaker_img">
<div class="container">
<img src="assets/img/speakers/s4.png" alt="Avatar" class="image">
<div class="info_box">
<h5 class="name">RAGHAV PANDEY</h5>
<p class="position">Professor</p>
</div>
<div class="overlay">
<h6 class=" text_heading color-light">RAGHAV PANDEY</h6>
<p class="text">
<br><br>
A remarkable man who had always been inspired to be a teacher, Raghav Pandey
is currently working as an assistant professor of Law at Maharashtra National
Law University, Mumbai and also a Senior Research Fellow at the Department
of Humanities and Social Sciences, IIT Bombay.
</p>
</div>
</div>
<!-- <img src="assets/img/speakers/s1.png" alt="speaker name"> -->
</div>
</div>