forked from IOSD/Yuvaan
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1498 lines (1338 loc) · 80.7 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 charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Yuvaan | Literary Fest of DTU</title>
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon.ico" />
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css" >
<!-- Main Style -->
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<!-- Responsive Style -->
<link rel="stylesheet" type="text/css" href="assets/css/responsive.css">
<!-- Fonts -->
<link rel="stylesheet" type="text/css" href="assets/fonts/font-awesome.min.css">
<!-- Icon -->
<link rel="stylesheet" type="text/css" href="assets/fonts/simple-line-icons.css">
<!-- Slicknav -->
<link rel="stylesheet" type="text/css" href="assets/css/slicknav.css">
<!-- Nivo Lightbox -->
<link rel="stylesheet" type="text/css" href="assets/css/nivo-lightbox.css" >
<!-- Animate -->
<link rel="stylesheet" type="text/css" href="assets/css/animate.css">
<!-- Owl carousel -->
<link rel="stylesheet" type="text/css" href="assets/css/owl.carousel.css">
<!-- Color CSS Styles -->
<link rel="stylesheet" type="text/css" href="assets/css/colors/default.css" media="screen" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Header Area wrapper Starts -->
<header id="header-wrap">
<!-- Roof area Starts -->
<div id="roof" class="hidden-xs">
<div class="container">
<div class="col-md-6 col-sm-6">
<div class="info-bar-address">
<i class="icon-location-pin"></i> Delhi Technological University , India
</div>
</div>
<div class="col-md-6 col-sm-6">
<!-- Quick Contacts Starts -->
<div class="quick-contacts">
<span><i class="icon-phone"></i> (91) 99 9000 3470</span>
<span><i class="icon-envelope"></i><a href="mailto:[email protected]"><span>[email protected]</a></span>
</div>
<!-- Quick Contacts End -->
</div>
</div>
</div>
<!-- Roof area End -->
<!-- Nav Menu Section Start -->
<div class="navigation-menu">
<nav class="navbar navbar-default navbar-event" >
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header col-md-2">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="assets/img/logo-3.png" alt=""></a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="sponsors.html">Sponsors</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div><!-- /navbar-collapse -->
</div><!-- /container -->
<!-- Mobile Menu Start -->
<ul class="wpb-mobile-menu">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="sponsors.html">Sponsors</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<!-- Mobile Menu End -->
</nav>
</div>
<!-- Nav Menu Section End -->
</header>
<!-- Header Area wrapper End -->
<!-- Main Slider Section Start -->
<div id="carousel-area">
<div id="carousel-slider" class="carousel slide" data-ride="carousel">
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/img/slider/bg-4.jpg" alt="">
<div class="carousel-caption">
<h2 class="wow fadeInRight" data-wow-delay="300ms">Yuvaan - Literary Fest<br>Where Literature Meets Life</h2>
<div class="buttons wow fadeInDown" data-wow-delay="0.2s"><a class="btn btn-lg btn-border" href="#Events">Register Here</a></div>
<a data-scroll href="#featured">
<div class="rev-scroll-btn wow fadeInUp" data-wow-delay="600ms">
<span></span>
</div>
</a>
</div>
</div>
<div class="item">
<img src="assets/img/slider/bg-5.jpg" alt="">
<div class="carousel-caption">
<a data-scroll href="#featured">
<div class="rev-scroll-btn wow fadeInUp" data-wow-delay="600ms">
<span></span>
</div>
</a>
</div>
</div>
<div class="item">
<img src="assets/img/slider/bg-3.jpg" alt="">
<div class="carousel-caption">
<h2 class="wow fadeInDown" data-wow-delay="300ms">Relish and cherish Literature?<br>Take part in our fun filled events!</h2>
<div class="wow fadeInUp" data-wow-delay="300ms"><a class="btn btn-lg btn-primary" href="events.html">Checkout Events Here</a></div>
<a data-scroll href="#featured">
<div class="rev-scroll-btn wow fadeInUp" data-wow-delay="600ms">
<span></span>
</div>
</a>
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-slider" role="button" data-slide="prev">
<span class="icon-arrow-left" aria-hidden="true"></span>
</a>
<a class="right carousel-control" href="#carousel-slider" role="button" data-slide="next">
<span class="icon-arrow-right" aria-hidden="true"></span>
</a>
</div>
</div>
<!-- Main Slider Section End -->
<!-- Coundown Section Start -->
<section class="countdown-timer section">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-12 wow fadeInLeft" data-wow-delay="0.2s">
<div class="text">
<h2>Yuvaan <br>Literary Fest</h2>
<h4>New Delhi , India <br> Jan 20, 2017 - Jan 21, 2017 </h4>
<a href="#Events" class="btn btn-lg btn-common">Register Here</a>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 wow fadeInRight" data-wow-delay="0.2s">
<div class="time-countdown">
<div id="clock" class="time-count"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Coundown Section End -->
<!-- Welocme Event Start -->
<section id="event" class="section">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="tab-block wow fadeInDown" data-wow-delay="0s">
<div class="icon">
<i class="icon-location-pin"></i>
</div>
<div class="desc">
<h4>Location</h4>
<p>DTU</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="tab-block wow fadeInDown" data-wow-delay="0.2s">
<div class="icon">
<i class="icon-calendar"></i>
</div>
<div class="desc">
<h4>Date</h4>
<p>20- 21 Jan</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="tab-block last-block wow fadeInDown" data-wow-delay="0.4s">
<div class="icon">
<i class="icon-event"></i>
</div>
<div class="desc">
<h4>Events</h4>
<p>7 Formal Events</p>
</div>
</div>
</div>
<div class="col-md-12">
<div class="content-text">
<h3 class="wow fadeInUp" data-wow-delay="0.8s">Get fresh insight into the world of Literature</h3>
<p class="wow fadeInUp" data-wow-delay="1s">YUVAAN-Delhi Technological University’s first ever Literary Fest. This two day extravaganza will cater to a plethora of passions with exciting competitions, fun events and informative guest lectures. It will nurture creative talents and you are guaranteed to be left awestruck. </p>
</div>
</div>
</div>
</div>
</section>
<!-- Welocme Event End -->
<!-- Featured Section Start -->
<section id="featured" class="section">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="section-title wow fadeInUp" data-wow-delay="0s">Why Join</h2>
<p class="section-subcontent wow fadeInUp" data-wow-delay="0.2s">Come join us and be a part of this wave of energy. Let it sweep you off your feet as you discover your own talents <br>and mingle with a diverse crowd of explorers like yourself. It’s going to be LIT!</p>
<div class="col-md-4 col-sm-6">
<div class="featured-box wow fadeInLeft" data-wow-delay="0.1s">
<div class="icon">
<i class="icon-energy"></i>
</div>
<div class="featured-content">
<h4>Get Inspired</h4>
<p> The YUVAAN Literature Festival provides a potentially life-changing opportunity for audiences from Delhi to learn from and exchange ideas with contemporary literary stalwarts.</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="featured-box wow fadeInLeft" data-wow-delay="0.2s">
<div class="icon">
<i class="icon-people"></i>
</div>
<div class="featured-content">
<h4>Meet New Faces</h4>
<p>The Yuvaan Literature Festival being first of its kind in the city, provides an excellent opportunity for culmination of creativity, imagination and erudite exchange of ideas.</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="featured-box wow fadeInLeft" data-wow-delay="0.3s">
<div class="icon">
<i class="icon-graph"></i>
</div>
<div class="featured-content">
<h4>Explore Talent</h4>
<p>Featuring plenty of home grown talent, Yuvaan is a platform for poets and novelists to share their work, thoughts, ideas and get a chance to explore the talent within. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Featured Section End -->
<!-- Events Section Start -->
<section id="Events" class="section">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="section-title wow fadeInUp" data-wow-delay="0s">Events</h2>
<p class="section-subcontent wow fadeInUp" data-wow-delay="0.2s">Plan your visit <br> Join us at DTU , Delhi .</p>
<!-- Events Main board Start-->
<div class="main-board wow fadeInDown" data-wow-delay="0.3s">
<!-- Nav tabs -->
<ul class="nav nav-tabs day" role="tablist">
<li role="presentation" class="active"><a href="#day1" aria-controls="day1" role="tab" data-toggle="tab">20 JAN <br> <span>DAY 01</span></a></li>
<li role="presentation"><a href="#day2" aria-controls="day2" role="tab" data-toggle="tab">21 JAN <br> <span>DAY 02</span> </a></li>
<li role="presentation"><a href="#day3" aria-controls="day3" role="tab" data-toggle="tab">Highlighted <br>Events</a></li>
</ul>
<br><br>
<!-- Tab content Start -->
<div class="tab-content tab-pad">
<!-- Day 1 Start -->
<div role="tabpanel" class="tab-pane active" id="day1">
<div class="row">
<div class="col-md-12 board text-center">
<div class="col-md-6 col-sm-6">
<div class="member stephen" >
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">GREY MATTERS</a>
</div>
<h4>A Test of General Knowledge</h4>
<div class = "rules">
<p>This general quiz is ready to take you on a roller coaster ride with its exciting set of questions and even more exciting set of prizes to take home! <br>
<br>
PRIZES WORTH 40K TO BE WON <br>
<strong>Registration Fee:-</strong> ₹100 per team <br>
<br>
<strong>Rules :- </strong> </p>
<ol>
<li>There will be 3 members per team </li>
<li>Round 1 will be a written Elimination Round.</li>
<li> Round 2, a steeper hill to climb, will be the Stage Round.</li>
<li>The rules and the final decision of the Quiz Master will be final and binding in all cases</li>
<li> Anyone using unethical means will be disqualified.</li>
</ol>
<p>
<strong>Time :</strong> 11 AM <br>
<strong>Venue:</strong> B.R. Ambedkar Auditorium, DTU <br>
<strong>Register At:</strong> <a href="https://goo.gl/forms/xfFZVn1QwtZYkBnf1">https://goo.gl/forms/xfFZVn1QwtZYkBnf1</a> <br>
</p>
</div>
</div>
<div class="member jeson">
<div class="button">
<a class="btn-large bg-3"><img src="assets/img/microphone.png" alt="">ANKAHE ALFAAZ</a>
</div>
<h4>The pen that scribbled for someone</h4>
<div class = "rules">
<p>This event is for the budding writers out there! A Creative Writing competition with a twist!<br>
You will be asked to write a letter to an eminent personality who will be revealed at the time of the event. And what’s more, we’ll send the top three winning entries to the personality as an honour!
<br>
<br>
PRIZES WORTH 40K TO BE WON <br>
<strong>Registration Fee:-</strong> ₹20 per person <br>
<br>
<strong>Rules :- </strong> </p>
<ol>
<li>This event has only one offline round, which will be held at the venue. </li>
<li>There will be no word limit.</li>
<li>The entries can be in either English or Hindi.</li>
<li>The contest will be of 1.5 hours of duration.</li>
<li>Any entries with language of obscene or offensive nature will be immediately disqualified.</li>
<li>The best letters will be awarded based on the decision of the judges, which will be final and binding in all cases.</li>
</ol>
<strong>Time :</strong> 1 PM <br>
<strong>Venue:</strong> Auditorium Lobby <br>
<strong>Register At:</strong> <a href="https://goo.gl/forms/QZE3sf6cQBPusOWH3">https://goo.gl/forms/QZE3sf6cQBPusOWH3</a> <br>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="member jon">
<div class="button">
<a class="btn-large bg-3"><img src="assets/img/microphone.png" alt=""> PANORAMA</a>
</div>
<h4>An Interpretation Competition for the Creative Mind</h4>
<div class = "rules">
<p>This one-of-a-kind event is sure to surprise you all with its unique idea and its openness to creative outlook. <br>We are looking for people who love to be articulate and who can make pictures and graphics come to life!
<br>
<br>
PRIZES WORTH 40K TO BE WON <br>
<strong>Registration Fee:-</strong> ₹100 per team <br>
<br>
<strong>Rules :- </strong> </p>
<ol>
<li>Teams of 2 (Inter-College teams allowed) will comprise an 'Artist' and an 'Interpreter', as they'll be referred to in the event.</li>
<li>Themes/topics will be given to one member of the team.</li>
<li>The Artist will be required to graphically represent the theme in any manner he/she prefers. 1.5 hours will be given for the same.</li>
<li>Participants will be required to carry their own colours/paints/stationery. A3 sheets will be provided to them.</li>
<li>The interpreter then gets 6 minutes to look at the picture drawn by his co-team member (the Artist), following which he will be given 3 minutes to interpret and speak about the picture in his own words. </li>
<li>The participants will be required to stick to either English or Hindi while speaking. </li>
<li>The best team will be awarded based on quality of drawing and content spoken. </li>
</ol>
<p>
<strong>Time :</strong> 12 PM <br>
<strong>Venue:</strong> Mini OAT <br>
<strong>Register At:</strong> <a href="https://goo.gl/forms/tQBmC6Smf1lWsG3E2">https://goo.gl/forms/tQBmC6Smf1lWsG3E2</a> <br>
</p>
</div>
</div>
<div class="member jeson">
<div class="button">
<a class="btn-large bg-3"><img src="assets/img/microphone.png" alt=""> AD MAD</a>
</div>
<h4>An Advertisement Enactment Competition</h4>
<div class = "rules">
<p>This event has been designed maintaining an acute similarity to our real life. Teams will be required to endorse a product by enacting an advertisement. There is no limit to the creativity involved in the advertisement. We just want you to ensure its your product which customers flock to buy!
<br>
<br>
PRIZES WORTH 40K TO BE WON <br>
<strong>Registration Fee:-</strong> ₹100 per team <br>
<br>
<strong>Rules :- </strong> </p>
<ol>
<li>Teams of 3-5 allowed. </li>
<li>Product to be endorsed will be informed 48 hours prior to the event.</li>
<li>Teams will be given 2 minutes for set up (if any) and 4-5 minutes to enact their advertisement.</li>
<li>Best acts will be awarded based on discretion of Judge.</li>
</ol>
<strong>Time :</strong> 2 PM <br>
<strong>Venue:</strong> OAT <br>
<strong>Register At:</strong> <a href="https://goo.gl/forms/WR3AXcg6iUmnLXSs1">https://goo.gl/forms/WR3AXcg6iUmnLXSs1</a> <br>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Day 1 End -->
<!-- Day 2 Start -->
<div role="tabpanel" class="tab-pane" id="day2">
<div class="row">
<div class="col-md-12 board text-center">
<div class="col-md-6 col-sm-6">
<div class="member stephen">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt=""> POETRY SLAM</a>
</div>
<h4>A Theatrical Poetry Extravaganza </h4>
<div class = "rules">
<p>This event is aimed at giving everyone a glimpse of the charm of poetry. Do not like Wordsworth? Do not enjoy Frost? Well, we are here to serve you poetry in the most thrilling way as participants delve into this beautiful form of expression.
<br>
<br>
PRIZES WORTH 40K TO BE WON <br>
<strong>Registration Fee:-</strong> ₹50 per person <br>
<br>
<strong>Rules :- </strong> </p>
<ol>
<li>Participants will be required to come prepared with an original poem (English only)</li>
<li>Each participant will be given 3 to 4 minutes to recite their piece in front of an audience</li>
<li>The best poem and recital will be awarded.</li>
</ol>
For further details refer to <a href="http://www.acui.org/content.aspx?menu_id=14&id=11119">this link.</a>
<p>
<strong>Time :</strong> 10 AM <br>
<strong>Venue:</strong> Mini OAT, DTU <br>
<strong>Register At:</strong> <a href="https://goo.gl/forms/ofjHcuhAvRRYxoUg2">https://goo.gl/forms/ofjHcuhAvRRYxoUg2</a> <br>
</p>
</div>
</div>
<div class="member jeson">
<div class="button">
<a class="btn-large bg-2"><img src="assets/img/microphone.png" alt=""> FOODIE-LICIOUS</a>
</div>
<h4>A Food Critiquing Event</h4>
<div class = "rules">
<p>This event is as foodielicious as it sounds. Think your brain can transform the work of your taste buds into words? Then this is just the event for you!
Taste the dish we serve you. And critique it on your blog. Describe our dish in your own words and the best blogs get to win amazing priz.
<br>
<br>
PRIZES WORTH 40K TO BE WON <br>
<strong>Registration Fee:-</strong> ₹50 per person <br>
<br>
<strong>Rules :- </strong> </p>
<ol>
<li>Round 1 will be the Preliminary Round. Participants will be shortlisted on the basis of quality of the content on their blog.</li>
<li>Round 2 will comprise of participants getting to taste the dish served to them.</li>
<li>10 minutes to taste and analyse the dish.</li>
<li>Participants will then be given 1 hour to describe the dish on their respective blogs. (Participants will be required to carry their own laptops)</li>
<li>The best blogs will be awarded based on decision of the judge.</li>
</ol>
<p>
<strong>Time :</strong> 1 PM <br>
<strong>Venue:</strong> Auditorium Lobby, DTU <br>
<strong>Register At:</strong> <a href="https://goo.gl/forms/sRnJaj41T0xKBLtZ2">https://goo.gl/forms/sRnJaj41T0xKBLtZ2</a> <br>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="member jon">
<div class="button">
<a class="btn-large bg-2"><img src="assets/img/microphone.png" alt=""> WORD WAR</a>
</div>
<h4>The Conventional Debate Competition</h4>
<div class = "rules">
<p>This quintessential debate promises to tickle the intellectual and rational person in you. Do not miss out on this war of words as participants fight it out to prove their point.
<br>
<br>
PRIZES WORTH 40K TO BE WON <br>
<strong>Registration Fee:-</strong> ₹100 per team <br>
<br>
<strong>Rules :- </strong> </p>
<ol>
<li>max number of teams allowed- 20</li>
<li>2 members per team (one for, one against) </li>
<li>max speaking time - 3 minutes (+1 minute for interjections- only 1 interjection per speaker)</li>
<li>Debate in English only</li>
<li>Final decision upto the discretion of the Judge</li>
</ol>
<p>
<strong>Time :</strong> 12 PM <br>
<strong>Venue:</strong> Smart Classroom, DTU <br>
<strong>Register At:</strong> <a href="https://goo.gl/forms/hB1QibL4EmootwbG3">https://goo.gl/forms/hB1QibL4EmootwbG3</a> <br>
</p>
</div>
</div>
<!--<div class="member stephen">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt=""> KAVI SAMMELAN</a>
</div>
<h4>Performance by Professionals</h4>
<p> From Drowning Daughter of Ullin's to the Jhansi ki Rani; what is a literary fest without an enchanting poetic performance.Professional poets will be invited to perform for the audience and enthral you with their narrations. </p>
</div> -->
</div>
</div>
</div>
</div>
<!-- Day 2 End -->
<div role="tabpanel" class="tab-pane" id="day3">
<div class="row">
<div class="col-md-12 board text-center">
<div class="col-md-6 col-sm-6">
<div class="member stephen" >
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">BONFIRE PARTY!</a>
</div>
<h4>Crazy DJ Night</h4>
<div class = "rules">
After an entire day of intense debates and discussions, Yuvaan is giving you a chance to sit back and revel in an energizing and exciting bonfire night with a crazy DJ. A winter night with a warm cozy bonfire and the latest tunes to dance to. Can it get any better?<br><br>
<strong>Date:</strong> 20 JAN <br>
<strong>Time :</strong> 7:30 PM <br>
<strong>Venue:</strong> Transit Ground , DTU <br>
</p>
</div>
</div>
<div class="member stephen" >
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">Let's Witticise</a>
</div>
<h4>A Stand Up Comedy Face Off</h4>
<div class = "rules">
<p><strong>Honest Event Description </strong><br>Calling all 'ubharte hue college level comics' who don't usually get slots at open mics.<br>
The competition is simple. Tell a few funny jokes to make the audience laugh. <br>
The catch, it ain't an audience that paid huge bucks to watch you. So, they might be like 'utna bhi funny nahi tha<br>
If you turn out to be relatively funniest for the day, according to some judge, whose idea of humour might or might not match yours, you get..... <br>
....Money. Yes, paisa paisa paisa bitches!
Still believe that your sense of humour makes up for your looks. Here are the rules: <br>
<br>
PRIZES WORTH 50K to be won<br>
<strong>Registration Fee:-</strong> ₹50 per person <br>
<strong>Register At:</strong> <a href="https://goo.gl/forms/KSbj5B8CuXFcoBA02">https://goo.gl/forms/KSbj5B8CuXFcoBA02</a> <br>
<br>
<strong>Rules for Let’s Witticise Prelims:- </strong> </p>
<ol>
<li> All entries are solo. Much like your entire life.</li>
<li>Send us a 2 minute video of your past performance on the drive link. 2 minute matlab 2 minute, Maggi wale 2 minute nahi.</li>
<li> Videos will be judged on originality, content, delivery, stage presence, clarity of speech, tumhari jaydaat, maa ki sundarta, padosi ke kapde, vagerah vagerah.</li>
</ol>
<strong>Rules for Let’s Witticise Finals:- </strong>
<ol>
<li> Selected Participants have to perform for 5-7 minutes. We know it’s longer than your average lasting time, but what’s a competition if it doesn’t give you blue balls. </li>
<li>Mono-acting, Puppetry and Musicals are not allowed. Stand-Up competition hai, gaaon ka mela nahi.</li>
<li> Stage par gaali koi bhosdiwala nahi dega.</li>
<li>Participants are informed that their order of performance shall be decided on the date of the event and therefore they should be present half an hour before the time on the venue. Slot gaya to gaya, ye to khaer open mic se seekh hi gaye hoge.</li>
<li> Judges’ decisions are final and binding, much like Amitabh Bachchan for K3G, “Keh diya na. Bas keh diya”</li>
</ol>
<p>
<strong>Date:</strong> 20 JAN <br>
<strong>Time :</strong> 5 PM <br>
<strong>Venue:</strong> BR Ambedkar Auditorium , DTU <br>
</p>
</div>
</div>
<div class="member stephen">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">A VETERAN'S VIEW</a>
</div>
<h4>MAJOR GAURAV ARYA</h4>
<div class = "rules">
<p>
Team Yuvaan feels proud to host a guest lecture by Major Gaurav Arya, retired Indian Army Officer, who has not just proven himself at the battlefield, but at the stage as well, inspiring millions of young souls with his words.<br><br>
He, whose voice is louder than gunshot, will now be gracing the stage at Yuvaan on 21st January, 2017 at 11AM to spread his message among the youth.<br>
<br>
See you at 'A Veteran's View'.
See you at Yuvaan'17!
<br><br>
<strong>Date:</strong> 21st January, 2017 <br>
<strong>Time:</strong> 11:00 am
<br><br>
</p>
</div>
</div>
<div class="member stephen">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">BRIDGING THE GAP OF GENDER INEQUALITY</a>
</div>
<h4>Ms. Talish Ray</h4>
<div class = "rules">
<p>
BRIDGING THE GAP OF GENDER INEQUALITY
Yuvaan brings to you an exclusive guest lecture by Ms. Talish Ray, a Delhi based lawyer and a proud feminist. She is also a Founding Partner at TRS Law Offices, Author at My Big Red Bag and the genius brain behind the information initiative 'Girls Gotta Know, India'.<br><br>
Yuvaan'17 is calling you!
<br>See you there!
<br><br>
<strong>Date:</strong> 21st January, 2017 <br>
<strong>Time:</strong> 1:00 pm
<br><br>
</p>
</div>
</div>
<div class="member jon">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">AUTHOR INTERACTIVE SESSION</a>
</div>
<h4>Devapriya Roy</h4>
<div class = "rules">
<p>
What is a Literary Fest without the company of an author?<br>
Yuvaan welcomes Devapriya Roy, a Delhi-based author, who began her career with her first novel 'The Vague Woman's Handbook', that instantly became a best seller. Currently working on the sequel of the same, she will be joining us at Yuvaan for an interactive session.
<br>For all the budding writers out there, you can't miss this!
<br>Yuvaan'17 is here.
<br><br>
<strong>Date:</strong> 21st January, 2017 <br>
<strong>Time:</strong> 5:15 pm
<br><br>
</p>
</div>
</div>
<div class="member jon">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">BRINGING OUT THE ENTREPRENEUR IN YOU</a>
</div>
<h4>Sarthak Sharma and Siddharth Bhatia</h4>
<div class = "rules">
<p>
Yuvaan brings to you the dynamic duo - Sarthak Sharma and Siddharth Bhatia. These two are not just young and successful entrepreneurs, but powerful orators as well. Their sense of humor and crowd capturing aura is guaranteed to leave you awestruck. For all the entrepreneurs in the making, this is a must-attend.<br><br>
Watch out for Yuvaan'17!
<br><br>
<strong>Date:</strong> 20st January, 2017 <br>
<strong>Time:</strong> 12:30 pm
<br><br>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="member stephen" >
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">Opening Ceremony</a>
</div>
<h4>Kavi Sammelan</h4>
<div class = "rules">
<p>
Yuvaan cordially invites you all to the Grand Opening of the two-day gala. The inauguration ceremony will be followed by a pleasant and light-hearted Kavi Sammelan.
<br>
<strong>Date:</strong> 19th January, 2017<br>
<strong>Time:</strong> 4PM<br>
<strong>Venue:</strong> BR Ambedkar Auditorium<br>
<br>
Let's celebrate literature with DTU's First Ever Literary.<br>
It's time for Yuvaan.<br><br>
</p>
</div>
</div>
<div class="member stephen" >
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">ALL THINGS POLITICS</a>
</div>
<h4>SUNETRA CHOUDHURY</h4>
<div class = "rules">
<p>
We proudly announce the company of NDTV Journalist and Red Ink award winner, Sunetra Choudhury, as a guest speaker at Yuvaan, DTU's Literary Fest.
<br><br>
Be there on 20th January, 2017 to witness something phenomenal. Set your alarms for 11:30am, for we can assure you that nothing will be the same after this event. <br>
Learn the story of Ms. Sunetra Choudhury and how she went from being an ordinary Shillong Girl to becoming one of the most prominent figures of News Channels.
<br><br>
Join us at Yuvaan'17!
</p>
</div>
</div>
<div class="member stephen">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">Comedy with a Cause</a>
</div>
<h4>AKRITI TYAGI</h4>
<div class = "rules">
<p>
We proudly welcome Ms. Akriti Tyagi, the multi talented journalist and anchor, as a guest speaker at Yuvaan. She is the former Senior Producer and Director of Broadcast Media and is currently hosting the popular entertainment TV series - 'Whacked out'. Heading comedy programming at NDTV, she is also the producer of 'Rising Stars of Comedy', a family show aired at NDTV Prime, featuring some of the funniest stand up comics.
<br><br>
<strong>Date:</strong> 21st January, 2017 <br>
<strong>Time:</strong> 4pm
<br><br>
Join us at Yuvaan and listen to Ms. Akriti Tyagi at 'Comedy with a Cause'. <br>
</p>
</div>
</div>
<div class="member stephen">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">रसोई से कलम तक की डगर</a>
</div>
<h4>GURPREET SINGH TIKKU</h4>
<div class = "rules">
<p>
Does your mouth instantly water on seeing anything delicious? Do you announce what's cooking when the first scent from the kitchen reaches you? Is "See it, Eat it." your life's motto?<br>
If your answer to the above questions is yes, you're a certified foodie and this guest lecture is tailor made for you!<br>
<br>
Be present on 21st January, 2017 at 2:30pm to listen to Gurpreet Singh Tikku, the avid food blogger and the mastermind behind Mister Tikku!<br>
Yuvaan'17 awaits you!
<br><br>
<strong>Date:</strong> 22st January, 2017 <br>
<strong>Time:</strong> 2:30 pm
<br><br>
</p>
</div>
</div>
<div class="member stephen">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">A Take Of Two Nations</a>
</div>
<h4>MAJOR GENERAL GD BAKSHI</h4>
<div class = "rules">
<p>
Team Yuvaan feels honoured to announce that Major General Gagandeep Bakshi, retired Indian Army Officer and proud recipient of the Sena Medal and Vishisht Seva Medal, will be gracing us with his presence as a guest speaker at Yuvaan.<br><br>General GD Bakshi has always been a source of inspiration to many and is now here to share his thoughts and knowledge with us.
<br><br>Yuvaan'17 is looking forward to seeing you there!
<br><br>
<strong>Date:</strong> 20st January, 2017 <br>
<strong>Time:</strong> 1:00 pm
<br><br>
</p>
</div>
</div>
<div class="member stephen">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">The Art of Public Speaking</a>
</div>
<h4>ROHIT SARDANA</h4>
<div class = "rules">
<p>
Journalist, Editor, Columnist, Anchor, Commentator and Debator. This versatile media personality, Rohit Sardana, who is also the host of 'Taal Thok Ke', a debate programme aired on Zee News, is now coming to Yuvaan to share with us the beauty of public speaking.<br>
<br>
It's time for Yuvaan.<br>
Be there
<br><br>
<strong>Date:</strong> 21st January, 2017 <br>
<strong>Time:</strong> 2:00 pm
<br><br>
</p>
</div>
</div>
<div class="member stephen">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">Yellow Journalism</a>
</div>
<h4>Mr. Sanket Upadhyay</h4>
<div class = "rules">
<p>
Also coming to Yuvaan is a Journalist, who has made news what it is today. We have the privilege of having Mr. Sanket Upadhyay, Former Senior Editor of India Today group and Deputy Executive Editor at CNN News 18, among us for a guest lecture on 'Yellow Journalism in Indian Media'.
<br>Winter is coming?
<br>Yuvaan is coming.
You are coming.
<br><br>
<strong>Date:</strong> 21st January, 2017 <br>
<strong>Time:</strong> 12:00 noon
<br><br>
</p>
</div>
</div>
<div class="member stephen">
<div class="button">
<a class="btn-large bg-1"><img src="assets/img/microphone.png" alt="">LIFE, THE UNIVERSE AND EVERYTHING</a>
</div>
<h4>Mr. Narinder Pal Singh</h4>
<div class = "rules">
<p>
Yuvaan welcomes Mr. Narinder Pal Singh, renowned motivational speaker, who will be sharing with us his thoughts and views on everything you need to know about life. Join us as this eminent philosopher shares his life experiences with the youth.<br><br>
Yuvaan'17 is expecting you.
<br><br>
<strong>Date:</strong> 20st January, 2017 <br>
<strong>Time:</strong> 4:00 pm
<br><br>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Tab content Start -->
</div>
<!-- Events Main board End-->
<div class="row know-more">
<div class="col-md-4 col-md-offset-4">
<button class= "btn btn-lg btn-primary"><a href="events.html">Know More & Register</a></button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Events Section End -->
<!-- Gallery Section Start -->
<section id="gallery" class="section">
<div class="container">
<div class="col-md-12">
<h2 class="section-title wow fadeInUp" data-wow-delay="0s">Our Gallery</h2>
</div>
<div class="gallery-wrap wow fadeInDown">
<div class="col-md-4 col-sm-4 col-xs-12 gellery-pn">
<div class="gallery-item">
<a href="#"><img src="assets/img/gallery/grey-matters.jpg" alt=""></a>
<div class="overlay">
<div class="icons">
<p class="overlay-text">Register At</p>
<a class="preview lightbox" href="assets/img/gallery/grey-matters.jpg"><i class="icon-eye"></i></a>
<a class="link" href="https://goo.gl/forms/xfFZVn1QwtZYkBnf1"><i class="icon-link"></i></a>
</div>
</div>
</div>
<div class="gallery-item">
<a href="#"><img src="assets/img/gallery/poetry.jpg" alt=""></a>
<div class="overlay">
<div class="icons">
<p class="overlay-text">Register At</p>
<a class="preview lightbox" href="assets/img/gallery/poetry.jpg"><i class="icon-eye"></i></a>
<a class="link" href=" https://goo.gl/forms/ofjHcuhAvRRYxoUg2"><i class="icon-link"></i></a>
</div>
</div>
</div>
<div class="gallery-item">
<a href="#"><img src="assets/img/gallery/13.jpg" alt=""></a>
<div class="overlay">
<div class="icons">
<p class="overlay-text"></p>
<a class="preview lightbox" href="assets/img/gallery/13.jpg"><i class="icon-eye"></i></a>
</div>
</div>
</div>
<div class="gallery-item">
<a href="#"><img src="assets/img/gallery/Akriti%20Tyagi.jpg" alt=""></a>
<div class="overlay">
<div class="icons">
<p class="overlay-text"></p>
<a class="preview lightbox" href="assets/img/gallery/Akriti%20Tyagi.jpg"><i class="icon-eye"></i></a>
</div>
</div>
</div>
<div class="gallery-item">
<a href="#"><img src="assets/img/gallery/TIKKU.jpg" alt=""></a>
<div class="overlay">
<div class="icons">
<p class="overlay-text"></p>
<a class="preview lightbox" href="assets/img/gallery/TIKKU.jpg"><i class="icon-eye"></i></a>
</div>
</div>
</div>
<div class="gallery-item">
<a href="#"><img src="assets/img/gallery/TALISH%20RAY.jpg" alt=""></a>
<div class="overlay">
<div class="icons">
<p class="overlay-text"></p>
<a class="preview lightbox" href="assets/img/gallery/TALISH%20RAY.jpg"><i class="icon-eye"></i></a>
</div>
</div>
</div>
<div class="gallery-item">
<a href="#"><img src="assets/img/gallery/11.jpg" alt=""></a>
<div class="overlay">
<div class="icons">
<p class="overlay-text"></p>
<a class="preview lightbox" href="assets/img/gallery/11.jpg"><i class="icon-eye"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12 gellery-pn">
<div class="gallery-item">
<a href="#"><img src="assets/img/gallery/panaroma.jpg" alt=""></a>
<div class="overlay">
<div class="icons">
<p class="overlay-text">Register At</p>
<a class="preview lightbox" href="assets/img/gallery/panaroma.jpg"><i class="icon-eye"></i></a>
<a class="link" href="https://goo.gl/forms/tQBmC6Smf1lWsG3E2"><i class="icon-link"></i></a>
</div>
</div>
</div>
<div class="gallery-item">
<a href="#"><img src="assets/img/gallery/word-war.jpg" alt=""></a>
<div class="overlay">
<div class="icons">
<p class="overlay-text">Register At</p>
<a class="preview lightbox" href="assets/img/gallery/word-war.jpg"><i class="icon-eye"></i></a>
<a class="link" href=" https://goo.gl/forms/hB1QibL4EmootwbG3"><i class="icon-link"></i></a>
</div>
</div>
</div>
<div class="gallery-item">
<a href="#"><img src="assets/img/gallery/ankahe.jpg" alt=""></a>
<div class="overlay">
<div class="icons">
<p class="overlay-text">Register At</p>
<a class="preview lightbox" href="assets/img/gallery/ankahe.jpg"><i class="icon-eye"></i></a>
<a class="link" href="https://goo.gl/forms/QZE3sf6cQBPusOWH3s"><i class="icon-link"></i></a>
</div>