-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1391 lines (1308 loc) · 82.5 KB
/
index.html
File metadata and controls
1391 lines (1308 loc) · 82.5 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>
<html lang="zxx">
<!-- Mirrored from templates.envytheme.com/elkevent/default/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 22 Aug 2021 13:13:00 GMT -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/meanmenu.css">
<link rel="stylesheet" href="assets/css/icofont.min.css">
<link rel="stylesheet" href="assets/css/animate.min.css">
<link rel="stylesheet" href="assets/css/magnific-popup.min.css">
<link rel="stylesheet" href="assets/css/odometer.min.css">
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
<title>StartUp Weekend</title>
<link rel="icon" type="image/png" href="assets/img/elogo.png">
</head>
<body>
<div class="preloader">
<div class="loader"></div>
</div>
<header id="header" class="header-area">
<div class="elkevent-mobile-nav">
<div class="logo">
<a href="index.html"><img src="assets/img/logo.png" alt="logo"></a>
<!-- <a href="index.html"><img src="assets/img/logo2.png" alt="logo"></a>
<a href="index.html"><img src="assets/img/logo3.png" alt="logo"></a> -->
</div>
</div>
<div class="elkevent-nav">
<div class="container">
<nav class="navbar navbar-expand-md navbar-light">
<a class="navbar-brand" href="index.html"><img src="assets/img/logo.png" alt="logo"></a>
<div class="collapse navbar-collapse mean-menu" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a href="#" class="nav-link">Home</a></li>
<li class="nav-item"><a href="#about-content" class="nav-link">About Us</a></li>
<li class="nav-item"><a href="#speakers" class="nav-link">Speakers</a></li>
<li class="nav-item"><a href="#schedule" class="nav-link">Schedule</a></li>
<li class="nav-item"><a href="#pricing" class="nav-link">Pricing</a></li>
<li class="nav-item"><a href="#faq" class="nav-link">FAQ</a></li>
<li class="nav-item"><a href="#sponsors" class="nav-link">Sponsors</a></li>
<li class="nav-item"><a href="#contactus" class="nav-link">Contact Us</a></li>
</ul>
<div class="others-option">
<ul>
<li>
<a href="https://dare2compete.com/competition/techstars-startup-weekend-delhi-technological-university-dtu-new-delhi-200571" target="_blank" class="btn btn-primary">Register Now</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</div>
</header>
<div class="main-banner item-bg1">
<div class="d-table">
<div class="d-table-cell">
<div class="container">
<div class="logo"
style="display: flex;
align-items: center;
justify-content: flex-start;"
>
<a href="https://www.havells.com/#gref" style="padding-right: 1em;" href="index.html"><img src="assets/img/havells.png" alt="logo" ></a>
<a style="padding-right: 1em;" href="index.html"><img src="assets/img/logo2.png" alt="logo"></a>
<a style="padding-right: 1em;" href="index.html"><img src="assets/img/logo3.png" alt="logo"></a>
<!-- <a href="https://www.jetbrains.com/store/startups/" style="padding-right: 1em;"><img src="assets/img/logo4.svg" alt="logo"></a> -->
</div>
<div class="main-banner-content">
<p>No <span>talk</span>, all action ! </p>
<h1>North India's <span>Biggest Startup Event</span> <br> STARTUP WEEKEND <b>2</b><b>0</b><b>2</b><b>1</b></h1>
<ul>
<li><i class="icofont-compass"></i>Organized by E-Cell DTU</li>
<li><i class="icofont-calendar"></i> 8th to 10th October, 2021</li>
</ul>
<div class="button-box">
<a href="https://dare2compete.com/competition/techstars-startup-weekend-delhi-technological-university-dtu-new-delhi-200571" target="_blank" class="btn btn-primary">Register Now</a>
<a href="assets/video/techstars.mp4" class="video-btn popup-youtube"><i
class="icofont-ui-play"></i> Watch Promo Video</a>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="main-banner-content">
<h1>Start-Up</h1>
<h1>Weekend</h1>
<h1>2021</h1>
</div> -->
<div class="shape1"><img src="assets/img/shapes/1.png" alt="shape1"></div>
<div class="shape2 rotateme"><img src="assets/img/shapes/2.png" alt="shape2"></div>
<div class="shape3 rotateme"><img src="assets/img/shapes/3.png" alt="shape3"></div>
<div class="shape4"><img src="assets/img/shapes/4.png" alt="shape4"></div>
</div>
<a id="about-content"></a>
<section class="about-area ptb-120 bg-image">
<div class="container">
<div class="row h-100 align-items-center">
<div class="col-lg-6">
<div class="about-content">
<span>Who Are We?🤔</span>
<h2>ABOUT US</h2>
<p>E-Cell DTU, for the past 12 years has been advocating the spirit of being a ‘CREATOR’ by providing the students the right guidance and mentorship from venture capitalists, angel investors, and top industrialists and striving to create an entrepreneurial ecosystem.</p>
<p>We attempt to foster new values amongst young individuals to make them an exemplary engineer imbibed with the idea of productive, innovative and independent thinking. We aim to create a 'CHANGE' with out of the box ideas and training individuals to make them the creators of this change.</p>
<p>Startup weekend is the place where budding entrepreneurs share their platform with like-minded people with one common goal - to launch a start-up in 54 hours. Startup Weekend resuscitates with the participants full of vigor and their exciting new ideas which they pitch in front of an esteemed panel of judges.</p>
<div class="signature">
<img src="assets/img/signature.png" alt="image">
</div>
<a href="#schedule" class="btn btn-primary">Timeline <i class="icofont-double-right"></i></a>
<a href="https://dare2compete.com/competition/techstars-startup-weekend-delhi-technological-university-dtu-new-delhi-200571" target="_blank" class="btn btn-secondary">Register Now</a>
</div>
</div>
<div class="col-lg-6">
<div class="about-image">
<img src="assets/img/about1.jpg" class="about-img1" alt="image">
<!-- <img src="assets/img/about2.jpg" class="about-img2" alt="image"> -->
<!-- <img src="assets/img/shapes/5.png" class="shape-img" alt="image"> -->
<a href="https://ecelldtu.in" class="btn btn-primary">Explore More About</a>
</div>
</div>
</div>
</div>
</section>
<section class="why-choose-us">
<div class="row m-0">
<div class="col-lg-3 col-md-6 p-0">
<div class="single-box">
<div class="d-table">
<div class="d-table-cell">
<div class="content">
<div class="icon">
<i class="icofont-headphone-alt-1"></i>
</div>
<h3>Networking</h3>
<p>Startup Weekend is a great way to expand your network, know people, their ambitions, plans, ideas and most importantly aligning their interest with yours to create something extraordinary. It would be a neutral place to network with active or future members of the high-tech community.</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 p-0">
<div class="single-box">
<div class="d-table">
<div class="d-table-cell">
<div class="content">
<div class="icon">
<i class="icofont-network-tower"></i>
</div>
<h3>New People</h3>
<p>Being around like like-minded people, listening to their ideas, approach and prototypes would inspire and instill the passion and zeal in you, learning the unfamiliar concepts and frameworks would help you shape your blueprint of success.</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 p-0">
<div class="single-box">
<div class="d-table">
<div class="d-table-cell">
<div class="content">
<div class="icon">
<i class="icofont-users-social"></i>
</div>
<h3>Great Speakers</h3>
<p>Listen to some of the brilliant minds of the business world and top notch industrialists who would not only provide their expertise but also give one-on-one mentorship for your idea.</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 p-0">
<div class="single-box">
<div class="d-table">
<div class="d-table-cell">
<div class="content">
<div class="icon">
<i class="icofont-wink-smile"></i>
</div>
<h3>Have Fun</h3>
<p>Experience the highs and lows of being an entrepreneur, brainstorm ideas, unleash your creativity and have fun!</p>
</div>
</div>
</div>
</div>
</div>
</div>
<ul class='slideshow'>
<li><span></span></li>
<li><span></span></li>
<li><span></span></li>
<li><span></span></li>
</ul>
</section>
<a id="speakers"></a>
<section class="speakers-area ptb-120 pb-0">
<div class="container">
<div class="section-title">
<span>SPEAKERS</span>
<h2>Past Mentors & Judges </h2>
<div class="bar"></div>
<div class="bg-title">
Speakers
</div>
<!-- <a href="#" class="btn btn-primary">View More Speakers</a> -->
</div>
</div>
<div class="row m-0">
<div class="col-lg-3 col-md-6 p-0">
<div class="single-speakers">
<img src="assets/img/Rajiv.png" alt="image">
<div class="speakers-content">
<h3><a href="#">Rajiv Sikka</a></h3>
<span>CEO of Indian Oil-Adani Gas Pvt. Ltd.</span>
</div>
<ul>
<li><a href="#" target="_blank" class="linkedin"><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 p-0">
<div class="single-speakers">
<img src="assets/img/Honey.png" alt="image">
<div class="speakers-content">
<h3><a href="#">Honey Karun</a></h3>
<span>Economist as IMF</span>
</div>
<ul>
<li><a href="#" target="_blank" class="linkedin"><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 p-0">
<div class="single-speakers">
<img src="assets/img/saurabh.jpg" alt="image">
<div class="speakers-content">
<h3><a href="#">Saurabh Shukla</a></h3>
<span>Editor-in-chief & Co Foundation NewsMobile</span>
</div>
<ul>
<li><a href="#" target="_blank" class="linkedin"><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 p-0">
<div class="single-speakers">
<img src="assets/img/Neeraj.png" alt="image">
<div class="speakers-content">
<h3><a href="#">Neeraj Singh</a></h3>
<span>Director KPMG</span>
</div>
<ul>
<li><a href="#" target="_blank" class="linkedin"><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 p-0">
<div class="single-speakers">
<img src="assets/img/sunil.png" alt="image">
<div class="speakers-content">
<h3><a href="#">Sunil Solanki</a></h3>
<span>Country Head SAP</span>
</div>
<ul>
<li><a href="#" target="_blank" class="linkedin"><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 p-0">
<div class="single-speakers">
<img src="assets/img/jud6.jpg" alt="image">
<div class="speakers-content">
<h3><a href="#">Amit Gupta</a></h3>
<span>V P Master Card</span>
</div>
<ul>
<li><a href="#" target="_blank" class="linkedin"><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 p-0">
<div class="single-speakers">
<img src="assets/img/anil.png" alt="image">
<div class="speakers-content">
<h3><a href="#">Anil Bhasin</a></h3>
<span>President at Havells</span>
</div>
<ul>
<li><a href="#" target="_blank" class="linkedin"><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 p-0">
<div class="single-speakers">
<img src="assets/img/gaurav.png" alt="image">
<div class="speakers-content">
<h3><a href="#">Gaurav Kumar</a></h3>
<span>President at Upgrad</span>
</div>
<ul>
<li><a href="#" target="_blank" class="linkedin"><i class="icofont-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</section>
<a id="schedule"></a>
<section class="schedule-area bg-image ptb-120">
<div class="container">
<div class="section-title">
<span>Schedule Plan</span>
<h2><b>Event</b> Itinerary</h2>
<div class="bg-title">
Events
</div>
<a href="https://dare2compete.com/competition/techstars-startup-weekend-delhi-technological-university-dtu-new-delhi-200571" target="_blank" class="btn btn-primary">Register Now</a>
<div class="bar"></div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="tab">
<ul class="tabs">
<li><a href="#">
First Day
<span>8 October 2021</span>
</a></li>
<li><a href="#">
Second Day
<span>9 October 2021</span>
</a></li>
<li><a href="#">
Third Day
<span>10 October 2021</span>
</a></li>
</ul>
<div class="tab_content">
<div class="tabs_item">
<ul class="accordion">
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="author">
<!-- <img src="assets/img/author1.jpg" data-toggle="tooltip" data-placement="top" title="Steven Smith" alt="image"> -->
</div>
<div class="schedule-info">
<h3>Elevator Pitch</h3>
</div>
</a>
<div class="accordion-content">
<p>The air crackles with electricity as the budding entrepreneurs share
their platform with like-minded people with one common goal-to launch a
start-up in 54 hours. Startup Weekend resuscitates with the participants
full of vigor and their exciting new ideas, ready to lay a foundation to
their dreams.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="author author-multi">
<!-- <img src="assets/img/author5.jpg" data-toggle="tooltip" data-placement="top" title="Steven Lucy" alt="image">
<img src="assets/img/author2.jpg" data-toggle="tooltip" data-placement="top" title="Jonaton Smith" alt="image">
<img src="assets/img/author3.jpg" data-toggle="tooltip" data-placement="top" title="John Smith" alt="image">
<img src="assets/img/author4.jpg" data-toggle="tooltip" data-placement="top" title="John Doe" alt="image"> -->
</div>
<div class="schedule-info">
<h3>Networking Dinner</h3>
</div>
</a>
<div class="accordion-content">
<p>After the Elevator Pitch, the organizers throw a networking dinner where
the participants get a chance to connect with their mentors, rivals, and
teammates. The dinner provides a valuable platform for the participants
to open up to the people they need to work with for the next 54 hours. A
platform where the like-minded share their thoughts, ideas, and
opinions.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="author author-multi">
<!-- <img src="assets/img/author6.jpg" data-toggle="tooltip" data-placement="top" title="Steven Lucy" alt="image">
<img src="assets/img/author7.jpg" data-toggle="tooltip" data-placement="top" title="Jonaton Smith" alt="image"> -->
</div>
<div class="author author-multi">
<!-- <img src="assets/img/author8.jpg" data-toggle="tooltip" data-placement="top" title="Steven Lucy" alt="image">
<img src="assets/img/author9.jpg" data-toggle="tooltip" data-placement="top" title="Jonaton Smith" alt="image">
<img src="assets/img/author3.jpg" data-toggle="tooltip" data-placement="top" title="John Smith" alt="image">
<img src="assets/img/author4.jpg" data-toggle="tooltip" data-placement="top" title="John Doe" alt="image"> -->
</div>
<div class="schedule-info">
<h3>Team Formation</h3>
</div>
</a>
<div class="accordion-content">
<p>Once the stage is set and teams are formed, participants prepare for the
<b> "No talk All Action"</b> weekend. Teams resonate myriad vibes of
competition, innovation, and out of the box ideas ready to be
transformed into exceptional startups.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="tabs_item">
<ul class="accordion">
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="author">
<!-- <img src="assets/img/author1.jpg" data-toggle="tooltip" data-placement="top" title="Steven Smith" alt="image"> -->
</div>
<div class="schedule-info">
<h3>Mentor Connect</h3>
</div>
</a>
<div class="accordion-content">
<p>Mentors carefully analyze the ideas put forth by the teams and provide
them with <b> "Success Mantras" </b> and insights on how to deal with
the business competition and reach the top of their game.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="author author-multi">
<!-- <img src="assets/img/author5.jpg" data-toggle="tooltip" data-placement="top" title="Steven Lucy" alt="image">
<img src="assets/img/author2.jpg" data-toggle="tooltip" data-placement="top" title="Jonaton Smith" alt="image">
<img src="assets/img/author3.jpg" data-toggle="tooltip" data-placement="top" title="John Smith" alt="image">
<img src="assets/img/author4.jpg" data-toggle="tooltip" data-placement="top" title="John Doe" alt="image"> -->
</div>
<div class="schedule-info">
<h3>Hustle</h3>
</div>
</a>
<div class="accordion-content">
<p>The teams commence their hustle to transform dreams into reality. The day
continues with the brainstorming of various ideas, approaches, and
techniques the teams may employ to beg the top position.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="author author-multi">
<!-- <img src="assets/img/author6.jpg" data-toggle="tooltip" data-placement="top" title="Steven Lucy" alt="image">
<img src="assets/img/author7.jpg" data-toggle="tooltip" data-placement="top" title="Jonaton Smith" alt="image"> -->
</div>
<div class="schedule-info">
<h3>Execution</h3>
</div>
</a>
<div class="accordion-content">
<p>All that glitters is not gold but all that glitters often catch the eye and
remain in the sub-conscience for a long time. The next step is to
present the ideas in an innovative manner so as to catch the attention
of the audience, mentors, and judges. The plan begins transforming into
action.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="tabs_item">
<ul class="accordion">
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="author">
<!-- <img src="assets/img/author1.jpg" data-toggle="tooltip" data-placement="top" title="Steven Smith" alt="image"> -->
</div>
<div class="schedule-info">
<h3>Pitch Clinic</h3>
</div>
</a>
<div class="accordion-content">
<p>The day begins with the teams embellishing their pitches while being
under the perpetual guidance of the mentors such as XXXXXX,XXXXXXX. and
XXXXXX. After a session of mock pitching and constant deck rectifying,
the teams gain the confidence to present their ideas to the Big Shots.
</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
<li>
<a class="accordion-title" href="javascript:void(0)">
<!-- <div class="author author-multi">
<img src="assets/img/author5.jpg" data-toggle="tooltip" data-placement="top" title="Steven Lucy" alt="image">
<img src="assets/img/author2.jpg" data-toggle="tooltip" data-placement="top" title="Jonaton Smith" alt="image">
<img src="assets/img/author3.jpg" data-toggle="tooltip" data-placement="top" title="John Smith" alt="image">
<img src="assets/img/author4.jpg" data-toggle="tooltip" data-placement="top" title="John Doe" alt="image">
</div> -->
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="schedule-info">
<h3>Presentation</h3>
</div>
</a>
<div class="accordion-content">
<p>The final pitch is then presented before an esteemed panel of judges
which comprised such as XXXXXX, XXXXXX and XXXXXX. All the hustle and
hard work finally seem to bear fruit with every participant longing for
a taste of victory, the results are finally announced.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="author author-multi">
<!-- <img src="assets/img/author8.jpg" data-toggle="tooltip" data-placement="top" title="Steven Lucy" alt="image">
<img src="assets/img/author9.jpg" data-toggle="tooltip" data-placement="top" title="Jonaton Smith" alt="image">
<img src="assets/img/author3.jpg" data-toggle="tooltip" data-placement="top" title="John Smith" alt="image">
<img src="assets/img/author4.jpg" data-toggle="tooltip" data-placement="top" title="John Doe" alt="image"> -->
</div>
<div class="schedule-info">
<h3>Celebration</h3>
</div>
</a>
<div class="accordion-content">
<p>Even though there is only one winning team but every individual has a
sense of pride in their mind for they have experienced something which
is rare- the power of teamwork, creative thinking, pressure handling,
and most importantly the essence of creating their own company from
scratch within 54 hours.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="tabs_item">
<ul class="accordion">
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<!-- Anurag Bhardwaj Close -->
<div class="author">
<img src="assets/img/author1.jpg" data-toggle="tooltip"
data-placement="top" title="Steven Smith" alt="image">
</div>
<div class="schedule-info">
<h3>Digital Marketing Theory</h3>
<ul>
<li><i class="icofont-user-suited"></i> By <span>Steven Smith</span>
CEO of EnvyTheme</li>
<li><i class="icofont-wall-clock"></i> 13:00AM - 20:00PM</li>
</ul>
</div>
</a>
<div class="accordion-content">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
<b>Location:</b> Hall 1, Building C , King Street ,
<span>USA</span>
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="author author-multi">
<img src="assets/img/author5.jpg" data-toggle="tooltip"
data-placement="top" title="Steven Lucy" alt="image">
<img src="assets/img/author2.jpg" data-toggle="tooltip"
data-placement="top" title="Jonaton Smith" alt="image">
<img src="assets/img/author3.jpg" data-toggle="tooltip"
data-placement="top" title="John Smith" alt="image">
<img src="assets/img/author4.jpg" data-toggle="tooltip"
data-placement="top" title="John Doe" alt="image">
</div>
<div class="schedule-info">
<h3>Digital World Event Information</h3>
<ul>
<li><i class="icofont-user-suited"></i> By <span>EnvyTheme
Team</span> of USA Inc</li>
<li><i class="icofont-wall-clock"></i> 13:00AM - 20:00PM</li>
</ul>
</div>
</a>
<div class="accordion-content">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book. Lorem Ipsum is simply dummy
text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a type specimen
book.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
<b>Location:</b> Hall 1, Building C , King Street ,
<span>USA</span>
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="author author-multi">
<img src="assets/img/author6.jpg" data-toggle="tooltip"
data-placement="top" title="Steven Lucy" alt="image">
<img src="assets/img/author7.jpg" data-toggle="tooltip"
data-placement="top" title="Jonaton Smith" alt="image">
</div>
<div class="schedule-info">
<h3>HTML, CSS and Bootstrap Introduction</h3>
<ul>
<li><i class="icofont-user-suited"></i> By <span>EnvyTheme
Team</span> of USA Inc</li>
<li><i class="icofont-wall-clock"></i> 13:00AM - 20:00PM</li>
</ul>
</div>
</a>
<div class="accordion-content">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book. Lorem Ipsum is simply dummy
text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a type specimen
book.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
<b>Location:</b> Hall 1, Building C , King Street ,
<span>USA</span>
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<div class="author author-multi">
<img src="assets/img/author8.jpg" data-toggle="tooltip"
data-placement="top" title="Steven Lucy" alt="image">
<img src="assets/img/author9.jpg" data-toggle="tooltip"
data-placement="top" title="Jonaton Smith" alt="image">
<img src="assets/img/author3.jpg" data-toggle="tooltip"
data-placement="top" title="John Smith" alt="image">
<img src="assets/img/author4.jpg" data-toggle="tooltip"
data-placement="top" title="John Doe" alt="image">
</div>
<div class="schedule-info">
<h3>Digital World Event Information</h3>
<ul>
<li><i class="icofont-user-suited"></i> By <span>EnvyTheme
Team</span> of USA Inc</li>
<li><i class="icofont-wall-clock"></i> 13:00AM - 20:00PM</li>
</ul>
</div>
</a>
<div class="accordion-content">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book. Lorem Ipsum is simply dummy
text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a type specimen
book.</p>
<div class="row h-100 align-items-center">
<div class="col-lg-6 col-md-7">
<div class="location">
<b>Location:</b> Hall 1, Building C , King Street ,
<span>USA</span>
</div>
</div>
<div class="col-lg-6 col-md-5 text-end">
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="btn-box">
<!-- <a href="#" class="btn btn-primary">Download Schedule (PDF)</a>
<a href="#" class="btn btn-secondary">Connect Via Instagram</a> -->
</div>
</div>
</div>
</div>
<div class="shape1"><img src="assets/img/shapes/1.png" alt="shape1"></div>
<div class="shape2 rotateme"><img src="assets/img/shapes/2.png" alt="shape2"></div>
<div class="shape3 rotateme"><img src="assets/img/shapes/3.png" alt="shape3"></div>
<div class="shape4"><img src="assets/img/shapes/4.png" alt="shape4"></div>
</section>
<section class="funfacts-area ptb-120">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-3">
<div class="single-funfact">
<div class="icon">
<i class="icofont-focus"></i>
</div>
<h3 class="odometer" data-count="18">00</h3>
<p>Domains covered</p>
</div>
</div>
<div class="col-lg-3 col-md-3">
<div class="single-funfact">
<div class="icon">
<i class="icofont-microphone"></i>
</div>
<h3 class="odometer" data-count="258+">00</h3>
<p>Total Judges and Mentors</p>
</div>
</div>
<div class="col-lg-3 col-md-3">
<div class="single-funfact">
<div class="icon">
<i class="icofont-copy"></i>
</div>
<h3 class="odometer" data-count="83">00</h3>
<p>Sponsors</p>
</div>
</div>
<div class="col-lg-3 col-md-3">
<div class="single-funfact">
<div class="icon">
<i class="icofont-users-social"></i>
</div>
<h3 class="odometer" data-count="999+">00 </h3>
<p>Total Attendance</p>
</div>
</div>
</div>
</div>
</section>
<a id="pricing"></a>
<section class="pricing-area ptb-120 bg-image">
<div class="container">
<div class="section-title">
<span>Pricing Plan</span>
<h2>Get <b>Registered</b></h2>
<div class="bg-title">
Pricing
</div>
<p>
While we like to separate participants into different groups, only a
zeal to learn is required to be a part of Startup Weekend, because
like most skills, you pick them up as you apply them. Choose whatever
category suits you.
</p>
<div class="bar"></div>
</div>
<div class="row_pricing">
<div class="col-lg-4 col-md-6">
<div class="pricing-table-box" style="height: 490px;">
<div class="pricingTable-header">
<h3 class="title">NERDY HACKERS</h3>
<div class="price-value"><sup>Rs.</sup>300</div>
</div>
<ul class="pricing-content">
<li>Is coding your thing?</li>
<li>Get your keyboard out & make your idea happen</li>
<li>Or build the tech to launch another idea</li>
<br>
<a href="https://dare2compete.com/competition/techstars-startup-weekend-delhi-technological-university-dtu-new-delhi-200571" target="_blank" class="btn btn-primary" >Register Now</a>
</ul>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="pricing-table-box">
<div class="pricingTable-header">
<h3 class="title">HOPPING HUSTLERS</h3>
<div class="price-value"><sup>Rs.</sup>300</div>
</div>
<ul class="pricing-content">
<li>Interested in Business, Marketing and PR?</li>
<li>Use your skills to build your idea</li>
<li>Or plan the strategy for another idea</li>
</ul>
<a href="https://dare2compete.com/competition/techstars-startup-weekend-delhi-technological-university-dtu-new-delhi-200571" target="_blank" class="btn btn-primary">Register Now</a>
</div>
</div>
<div class="col-lg-4 col-md-6 ">
<div class="pricing-table-box">
<div class="pricingTable-header">
<h3 class="title">AESTHETIC DESIGNERS</h3>
<div class="price-value"><sup>Rs.</sup>300</div>
</div>
<ul class="pricing-content">
<li>Do you love designs?</li>
<li>Design your ideas and bring it to life</li>
<li>Or help paint another idea into reality</li>
</ul>
<a href="https://dare2compete.com/competition/techstars-startup-weekend-delhi-technological-university-dtu-new-delhi-200571" target="_blank" class="btn btn-primary">Register Now</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="pricing-table-box">
<div class="pricingTable-header">
<h3 class="title">TEAMS</h3>
<div class="price-value"><sup>Rs.</sup>300</div>
</div>
<ul class="pricing-content">
<li>Want To Give A Professional Learning Experience To Your Whole Team?</li>
<li>Then Register As Team Comprising of any number of members(MAX 15)</li>
<li>With Members From Any Domain</li>
</ul>
<a href="https://dare2compete.com/competition/techstars-startup-weekend-delhi-technological-university-dtu-new-delhi-200571" target="_blank" class="btn btn-primary">Register Now</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!----------------------- FAQ---------------- -->
<a id="faq"></a>
<section class="partner-area ptb-120">
<div class="container">
<div class="section-title">
<span>Any Doubts! See Frequently Asked Questions</span>
<h2>FAQ</h2>
<a href="#contactus" class="btn btn-primary">Contact Us</a>
<div class="bar"></div>
</div>
<div class="faq-accordion">
<ul class="accordion">
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<span><i class="icofont-plus"></i></span>
Is this event for me?
</a>
<p class="accordion-content show" style="display: none;">If you are interested in entrepreneurship the answer is most likely yes. Techstars Startup Weekend attendee backgrounds are roughly 50% technical (developers, coders, designers) and 50% business (marketing, finance, law). Whether you are a serial entrepreneur or new to the startup scene, if you motivated to build a product or startup and open to new ideas you’ll fit right in.</p>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<span><i class="icofont-plus"></i></span>
How do I prepare?
</a>
<p class="accordion-content" style="display: none;">Do some research. Market research and background information will give you a better understanding of the probelm your trying to solve. <br>
Practice your pitch. You'll have 60 seconds to persuade other attendees to join your team. Make it clear, concise, and convincing! <br>
Get familiar with our tools for the weekend, head over to startupweekend.org /resources <br>
Get some rest. <br>
Bring a friend! Events are better with good company.</p>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<span><i class="icofont-plus"></i></span>
Do I have to participate all three days?
</a>
<p class="accordion-content" style="display: none;">Apart from Organizers, selected Coaches, Speakers, and press, everyone who attends the event is expected to participate all three days. This is important not only to preserve the ‘vibe’ of the weekend (“no talk, all action”) but also to minimize distractions/disruptions for working teams.</p>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<span><i class="icofont-plus"></i></span>
Do I have to pitch an idea to attend?
</a>
<p class="accordion-content" style="display: none;">No, but we encourage you to! You can pitch an idea you've been thinking about for years, or something last minute you think of during the event. It's a great experience and invaluable practice for public speaking.</p>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<span><i class="icofont-plus"></i></span>
Do I need a team?
</a>
<p class="accordion-content" style="display: none;">No, having a team is Not Compulsory But Everyone who attends the event as an attendee is Recommended to participate in a team. This is important not only to preserve the mission of Techstars Startup Weekend (teamwork!) but also to minimize distractions/disruptions for all working teams.</p>
</li>
<li class="accordion-item">
<a class="accordion-title" href="javascript:void(0)">
<span><i class="icofont-plus"></i></span>