forked from kindleknack/harvest-1.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1565 lines (1323 loc) · 88.3 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>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Harvest 1.0</title>
<!-- meta tags -->
<meta name="description" content="A grand online fiesta to provide a great platform and exciting opportunities amidst the frustration and ill effects of this global pandemic.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Kindle's Knack Harvest 1.0">
<meta property="og:site_name" content="Main Website">
<meta property="og:description" content="A grand online fiesta to provide a great platform and exciting opportunities.">
<meta property="og:url" content="https://kindleknack.github.io/harvest-1.0/">
<meta property="og:type" content="Website">
<meta property="og:locale" content="en_IN">
<meta property="og:image" content="https://images.pexels.com/photos/1190297/pexels-photo-1190297.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=200&w=200">
<!-- favicon icon -->
<link rel="shortcut icon" href="assets/image/favicon.ico">
<!-- bootstrap cdn -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT" crossorigin="anonymous"></script>
<!-- aos-cdn -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!-- external stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- preload home image -->
<link rel="preload" href="https://images.pexels.com/photos/1190297/pexels-photo-1190297.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940">
<!-- Font-Awesome CDN -->
<script src="https://kit.fontawesome.com/1d3b6fc267.js" crossorigin="anonymous"></script>
</head>
<body class="body-bg">
<section id="title">
<!-- Nav Bar -->
<nav class="navbar navbar-expand-lg navbar-dark navbar-color">
<a class="navbar-brand" href="#">
<img src="assets/image/logo.png" width="200" height="100" alt="">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active butn-hvr" aria-current="page" href="#home">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link butn-hvr" aria-current="page" href="#event">EVENTS & WEBINARS</a>
</li>
<li class="nav-item">
<a class="nav-link butn-hvr" aria-current="page" href="#partner">PARTNERS</a>
</li>
<li class="nav-item">
<a class="nav-link butn-hvr" aria-current="page" href="#contact">CONTACT</a>
</li>
<li class="nav-item">
<div class="header-right-btn f-right ml-15 d-none d-xl-inline-block">
<a href="#event" class="header-btn">Confirm Your Seat</a>
</div>
</li>
</ul>
</div>
</nav>
</section>
<main>
<section class="slider-area" id="home">
<div class="slider-height hero-overly slider-bg d-flex align-items-center">
<div class="container position-relative">
<div class="row">
<div class="col-xxl-5 col-xl-7 col-lg-6 col-md-8 col-sm-10">
<div class="hero-caption">
<h1 data-aos="zoom-in" data-aos-once="true"><span>Kindle's Knack</span>Harvest 1.0</h1>
</div>
</div>
</div>
</div>
</div>
<div class="hero-footer" data-aos="fade-up" data-aos-delay="700" data-aos-once="true">
<h4>16th - 18th <br> July, 2021</h4>
<h5 class="btn btn-primary">Let's Rock!</h5>
</div>
</section>
<section class="count-down-area top-padding">
<div class="container">
<div class="row justify-content-between ">
<div class="col-xl-4 col-lg-4 col-md-6">
<div class="section-title mb-40">
<h2>About <br> Kindle Knack & <br> Harvest 1.0 </h2>
<a href="https://kindleknack.github.io/kindleknack/" target="_blank" class="btn_1 mt-20" data-aos="fade-down" data-aos-once="true">Visit Our Website</a>
</div>
</div>
<div class="col-xl-6 col-lg-7 col-md-12">
<div class="section-title mb-40">
<p>KINDLE is a multi-domain club formed in July 2020 with the motto - More the Variety, Better the Society.
In our journey so far, we have organized several online competitions and webinars and have built a student
community of over 250 members striving to become a better version of themselves.</p>
<p>This July, we are here with a grand online fiesta to provide a great platform and exciting opportunities amidst the frustration and ill effects of this global pandemic.
KINDLE's KNACK HARVEST 1.0 aims to bring together students from all over India competing with each other and showcasing their talents in several fields of their interest.</p>
</div>
<div class="container">
<div class="count-down-wrapper">
<div class="row justify-content-between">
<div class="col">
<div class="single mb-30">
<div class="single-counter">
<p>0</p>
<span class="counter ">3</span>
</div>
<div class="pera-count">
<p>Days Event</p>
</div>
</div>
</div>
<div class="col">
<div class="single mb-30">
<div class="single-counter">
<span class="counter ">17</span>
<p class="">+</p>
</div>
<div class="pera-count">
<p>Events</p>
</div>
</div>
</div>
<div class="col">
<div class="single mb-30">
<div class="single-counter">
<span class="counter ">7</span>
<p class="">+</p>
</div>
<div class="pera-count">
<p>Sponsors</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="schedule-area section-padding events-card" id="event">
<div class="container">
<div class="row">
<div class="col-xl-5 col-lg-6 col-md-6">
<div class="section-title mb-30">
<h2>EVENTS</h2>
</div>
</div>
</div>
</div>
<div class="container">
<!-- --------------------------------FIRST COLUMN--------------------------------------- -->
<div class="row justify-content-center">
<div class="col-lg-11">
<div class="schedule-wrapper">
<div class="row">
<div class="col-sm-3" data-aos="flip-left" data-aos-once="true">
<div class="card">
<img class="card-img-top" src="assets/image/events/16.jfif" alt="">
<div class="card-body">
<h5 class="card-title text-light">CODM Championship</h5>
<p class="card-text text-light">Unleash your inner competitive beast in CODM Championship.</p>
<a onclick="modalShow15()" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="codm" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>CODM</u></h1>
</div>
<div class="modal-body">
<p>
Show off your skills, experience the tournament like the CODM official championship. All the rules will be much the same as the CODM championship. That means you do not have to worry about akimbo deagles or na-45 or even
thermites.
Unleash your inner competitive beast in the Kindle CODM Championship
</p>
<hr>
<h3>Event Description : </h3>
<p>1. The teams are decided for maps and game mode to play 1 day before the game starts.</p>
<p>2. The list of maps and modes allowed are shown in the rules and regulations link. </p>
<p>3. Each CODM match takes a maximum of 15 minutes to complete, which means we can finish 12 matches in 3 hours.</p>
<p>4. Prelims round duration - 11 AM to 2 PM.</p>
<p>5. There will be a lunch break from 2 PM to 3 PM after which we will have the semifinals and finals.</p>
<p>6. The link to the discord server along with other additional instructions will be sent via registered mail on 12th July, 2021.</p>
<p>7. For more information about the tournament --> <a target="_blank" href="https://drive.google.com/file/d/1_qGhkR7WBXGCHy8eRAIB7HAu7SeVvbZ_/view?usp=sharing" style="color:red;font-weight:bold">Click Here</a></p>
<p>Note <span style="color:red;">*</span>- Results will be announced on our social media pages on 18th July and there will be exciting prizes for the winners.</p>
<p>Last date of registration is 10th July, 2021.</p>
<p>To know all the latest updates about the events, join us on Telegram. (Mandatory)</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose15()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</i></a>
<a href="https://forms.gle/m76qtrQ4gENkpzGL9" target="_blank" type="button" class="btn btn-primary">Register Here!</a>
</div>
</div>
</div>
</div>
<div class="col-sm-3" data-aos="flip-left" data-aos-once="true" data-aos-delay="100">
<div class="card">
<img class="card-img-top" src="assets/image/events/2.jpeg" alt="">
<div class="card-body">
<h5 class="card-title text-light">Actster</h5>
<p class="card-text text-light">Mega-Event for the budding actors to grab the spotlight.</p>
<a onclick="modalShow1()" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="actster" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content ">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>Actster</u></h1>
</div>
<div class="modal-body">
<p>
The greatest opportunity for all aspiring actors to grab the spotlight and showcase their talent, creativity, and thoughts on a bigger platform.
Get ready to conquer the stage and show everyone what emotions an actor has.
</p>
<p>
There is no pre-decided theme for the event because we believe that talent doesn't have any boundaries.
Although to make the event a bit more interesting we decided to put the theme in the second round and that will be disclosed after participants qualify to the second round.
</p>
<hr>
<h3>ROUND 01</h3>
<p>1. Participants are required to submit a video of their act that can be based on any theme or genre according to their preference. </p>
<p>2. Duration of the video should not exceed 5 minutes</p>
<p>3. The video should be posted on the public instagram account of the participant tagging KINDLE (@kindle_knack) with the following hashtags:
#actster
#kindleknack
#kkh1.0
<br>
The participants should follow KINDLE before posting the same.
</p>
<p>4. Deadline for posting the videos is 13th July, 2021. </p>
<p>5. A drive link of the video should also be submitted on the Google form link that will be available in KINDLE’s insta bio post registration.
This link will be active from 5th to 13th July, 2021.</p>
<p>Note <span style="color:red;">*</span> - The result of this round along with further instructions will be sent via registered mail of the participants.</p>
<h3>ROUND 02</h3>
<p>Date - 16th July, 6:45pm </p>
<p>1. All the qualified participants will be asked to perform a solo act based on the topic provided earlier via email.</p>
<p>2. All other details will be provided via mail.</p>
<p>Notes <span style="color:red;">*</span> - The final results will be declared on 18th July in our social media pages.</p>
<p>All participants will get a participation certificate. There will be a merit certificate in addition to other exciting prizes for the winners.
Last date of registration is 10th July, 2021.
</p>
<p>Make sure you join our telegram channel to stay updated with all required information about the events. (Mandatory)</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose1()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</a>
<a type="button" class="btn btn-primary" href="https://forms.gle/o7H5nvMQjMqizKWa9" target="_blank">Register Here!</a>
</div>
</div>
</div>
</div>
<div class="col-sm-3" data-aos="flip-left" data-aos-once="true" data-aos-delay="200">
<div class="card">
<img class="card-img-top" src="assets/image/events/3.jpeg" alt="">
<div class="card-body">
<h5 class="card-title text-light">The Story Maker</h5>
<p class="card-text text-light">Want to pit yourself against the best storytellers?</p>
<a onclick="modalShow2()" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="storymaker" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>The Story Maker</u></h1>
</div>
<div class="modal-body">
<p>
The human species thinks in metaphors and learns through stories. Want to pit yourself against the best storytellers?
Find out where you stand as a storyteller on college level by joining us at The Story Maker competition!
</p>
<hr>
<h3>ROUND 01 - End Line</h3>
<p>1. This will be conducted through Airmeet on 16th July, 2021 from 6:00 PM. All further details will be shared via mail on 14th July.</p>
<p>2. The last line or the moral of a story will be marked and shared through Excel sheet.</p>
<p>3. A participant will be asked to select a marked number of their choice and the corresponding cell will be unmarked. </p>
<p>4. That participant will have to narrate a story for a minute or two, which should end with the given end line. </p>
<p>Note <span style="color:red;">*</span> - Results of this round will be shared immediately after completion of the first round on Telegram. The contestants who qualify to the final round will need to be prepared
accordingly.</p>
<h3>ROUND 02 - Connect The Dots</h3>
<p>1. This will also be conducted through Airmeet from 7:30 PM on the same day and the finalists will need to join using the previous link itself. </p>
<p>2. Few random words will be marked and shared through an Excel sheet during the session.</p>
<p>3. A participant will be asked to select 4 numbers of their choice and the corresponding cells displaying the words will be unmarked</p>
<p>4. Then the participant will be asked to narrate a story for a minute or two, using those 4 words chosen by them</p>
<p>5. The top 3 narrators will be declared as winners.</p>
<p>Note <span style="color:red;">*</span> - The final results will be declared on our social media pages on 18th July, 2021.
All participants will get participation certificates. There will be a merit certificate in addition to other exciting prizes for the winners.
</p>
<p>Last date of registration is 10th July, 2021.
Make sure you join us on Telegram to get all the latest updates about the events. (Mandatory)
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose2()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</i></a>
<a href="https://forms.gle/s7578a3fwRM3EF9y5" target="_blank" type="button" class="btn btn-primary">Register Here!</a>
</div>
</div>
</div>
</div>
<div class="col-sm-3" data-aos="flip-left" data-aos-once="true" data-aos-delay="300">
<div class="card">
<img class="card-img-top" src="assets/image/events/4.jpeg" alt="">
<div class="card-body">
<h5 class="card-title text-light">Celestia</h5>
<p class="card-text text-light"> Fasten up your spacesuits and get ready to explore the space.</p>
<a onclick="modalShow3()" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="celestia" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>Celestia</u></h1>
</div>
<div class="modal-body">
<p>
Bored in this lockdown? Well here we are ready to take you to space through your imagination with the help of some amazing chain of events.
So fasten up your spacesuits and get ready to explore the space.
</p>
<hr>
<h3>ROUND 01</h3>
<p>1. Here a quiz will be conducted on 12th July, 2021 at 7:00 PM. Based on their performance in this, contestants will get qualified for the next round. </p>
<p>2. Link of the quiz with further instructions will be shared via email on 11th July.</p>
<p>3. Results and further instructions for qualified candidates will be informed via registered mail on 13th July morning. A WhatsApp group will be made for the qualified candidates.</p>
<h3>ROUND 02</h3>
<p>1. Here the contestants will need to submit a report through a google form. They have to choose a topic from the list of topics that will be shared along with the submission link through the whats app group formed after
round 1.</p>
<p>2. Submission link will be activated from 13th July 2021- 4 PM, and will be closed at 14th July 2021- 11:59 PM. Late submissions will not be considered</p>
<p>3. Results of this round will be informed via the same Whats app group on 15th July.</p>
<h3>ROUND 03</h3>
<p>1. Selected Contestants will have to present their submitted report in a short and simple manner. </p>
<p>2. After the presentation, they will be given a situation in which they will explain a solution to that problem in their innovative way.</p>
<p>3. This will be conducted via Airmeet whose details will be provided via WhatsApp.</p>
<p>4. Date : 16th July 2021 <br> Time : 7:00-9:00 PM.</p>
<p>Note <span style="color:red;">*</span> - The final results will be announced on our social media on 18th July, 2021.
All participants will get a participation certificate. There will be a merit certificate in addition to other exciting prizes for the winners.
</p>
<p>Last date of registration- 10th July, 2021. So all space geeks out there, hurry up and register.
Make sure you join us on telegram to get all the latest updates. (Mandatory)
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose3()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</i></a>
<a href="https://forms.gle/wgWZKevu5RPzyosL6" target="_blank" type="button" class="btn btn-primary">Register Here!</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- --------------------------------Second COLUMN--------------------------------------- -->
<div class="row justify-content-center">
<div class="col-lg-11">
<div class="schedule-wrapper">
<div class="row">
<div class="col-sm-3" data-aos="flip-right" data-aos-once="true" data-aos-delay="600">
<div class="card">
<img class="card-img-top" src="assets/image/events/5.png" alt="">
<div class="card-body">
<h5 class="card-title text-light">Valorant Tournament</h5>
<p class="card-text text-light">Show off your skills, prove yourself the best of the best.</p>
<a class="btn btn-primary" onclick="modalShow4()">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="valorant" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>Valorant Tournament</u></h1>
</div>
<div class="modal-body">
<p>
Show off your skills, prove yourself to be the best of the best. Get a chance to win exciting prizes.
Unleash your inner beast, flick the heads like a champ, make the ace a history by playing KINDLE Valorent Championship.
</p>
<hr>
<h3>Event Description</h3>
<p>1. The teams are decided for maps and game mode to play 1 day before the game starts.</p>
<p>2. The list of maps and modes allowed are shown in the rules and regulations link.</p>
<p>3. For the qualification round, teams play spike rush.</p>
<p>4. Each spike rush match will be of a maximum duration of 15 minutes.</p>
<p>5. This championship will take place on our Discord server on 17th July from 11:00 AM.</p>
<p>6. Prelims round Duration - 11 AM to 2 PM</p>
<p>7. There will be a lunch break from 2 PM to 3 PM after which we will have the semifinals and finals.</p>
<p>8. The link to the discord server along with other additional instructions will be sent via registered mail on 12th July, 2021.</p>
<p>9. For more information about the tournament --> <a target="_blank" href="https://drive.google.com/file/d/1-_PwQi9c2NHOSwXW8iQSWIM1oQbvsXDh/view" style="color:red;">Click Here</a></p>
<p>Note <span style="color:red;">*</span>- Results will be announced on our social media pages on 18th July and there will be exciting prizes for the winners.</p>
<p>Last date of registration is 10th July, 2021.</p>
<p>To know all the latest updates about the events, join us on Telegram. (Mandatory)</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose4()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</i></a>
<a href="https://forms.gle/kMvodyZByLxJ3BAUA" target="_blank" type="button" class="btn btn-primary">Register Here!</a>
</div>
</div>
</div>
</div>
<div class="col-sm-3" data-aos="flip-right" data-aos-once="true" data-aos-delay="500">
<div class="card">
<img class="card-img-top" src="assets/image/events/6.jpeg" alt="">
<div class="card-body">
<h5 class="card-title text-light">Chords of Soul</h5>
<p class="card-text text-light">Do you have immense love for music or are you a music junkie?</p>
<a onclick="modalShow5()" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="chord" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>Chords of Soul</u></h1>
</div>
<div class="modal-body">
<p>
Music is the language of the soul, a piece of art that goes in the ears straight to the heart. Do you have immense love for music? Are you a music junkie just waiting for the right opportunity to perform in front of an
audience?
So come on register and showcase your musical talent.
</p>
<p>
This is a solo singing competition that will be conducted in 3 rounds. To know more, keep reading.
</p>
<hr>
<h3>ROUND 01</h3>
<p>1. It's an Instagram based round.</p>
<p>2. Participants will have to follow the official Instagram handle of kindle_knack</p>
<p>3. Participants will also need to upload a video of themselves performing from their respective public Instagram handles, and tag KINDLE (@kindle_knack) along with the following hashtags:
#kindleknack <br>
#kkh1.0 <br>
#chords_of_soul.
</p>
<p>4. Furthermore, participants have to mandatorily upload a public drive link of their video in the form, which will be attached in kindle_knack bio post registration. The form will be active from 5th July to 13th July.</p>
<p>5. If any participant just posts the video on Instagram and does not fill the form, then that video won't be taken into consideration.</p>
<p>6. A fraction of the score will depend on the social media reaction (likes, comments) while the rest will be based on the standard of the musical performance.</p>
<p>7. A backing track or one accompanying instrument may be used for the song. </p>
<p>8. Participants may choose any genre for music. </p>
<p>9. The duration of the video should be between 1 to 2 minutes. </p>
<p>10. Audio and video should be clear with editing, filters or special effects.</p>
<h3>ROUND 02</h3>
<p>WhatsApp group will be created after ROUND - 1 and further details will be shared there.</p>
<p>1. This will be an exciting music session on Airmeet.</p>
<p>2. This round will be conducted on 17th July from 10:00am to 12:30pm.</p>
<p>3. By spinning the wheel any two participants will be chosen and they have to sing according to the words or songs that will again be randomly chosen by them by spinning the wheel</p>
<p><strong>Results of this round will be informed via the WhatsApp group after completion of the session.</strong></p>
<h3>ROUND 03</h3>
<p>1. This will be in the form of an open mic contest where the finalists can sing any song of their choice.</p>
<p>2. This round will be conducted on 17th July from 5:00 PM. Further details will be shared via WhatsApp group.</p>
<p>Note <span style="color:red;">*</span> - The final results will be announced on our social media on 18th July, 2021. So stay tuned.</p>
<p>All participants will get a participation certificate. There will be a merit certificate in addition to other exciting prizes for the winners.</p>
<p>The winner will also get a chance to perform live in our special session on 18th July.</p>
<p>Last date of registration is 10th July, 2021.</p>
<p>Make sure you join our telegram channel to stay updated with all required information about the events. (Mandatory)</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose5()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</i></a>
<a href="https://forms.gle/LDBFYTwR9Z2RU9mt6" target="_blank" type="button" class="btn btn-primary">Register Here!</a>
</div>
</div>
</div>
</div>
<div class="col-sm-3" data-aos="flip-right" data-aos-once="true" data-aos-delay="400">
<div class="card">
<img class="card-img-top" src="assets/image/events/7.jpg" alt="">
<div class="card-body">
<h5 class="card-title text-light">Code One Out</h5>
<p class="card-text text-light">One of the best ways to learn coding is with lots of practice.</p>
<a onclick="modalShow6()" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="code" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>Code One Out</u></h1>
</div>
<div class="modal-body">
<p>
One of the best ways to learn how to code is with lots and lots of practice, so what better way to improve your skills when learning to code than through coding challenges and competitions?
In this epoch of growing exponent data, we believe everyone should procure the art of coding.
</p>
<p>
This event will be conducted in two rounds. Students from any college can participate individually in this event.
</p>
<h5>PRE-REQUISITES</h5>
<p>1. Participants need to have an active machine like Kali-Linux or any machine which they might prefer, running on their PC or on a virtual machine for the tools required to decrypt the file for Round 1.</p>
<p>2. For Round 2, participants will need to register to HackerRank using the same email account via the registered for the event. </p>
<hr>
<h3>ROUND 01</h3>
<p>1. This will be conducted on 17th July from 12:30 PM.</p>
<p>2. An encrypted file will be sent, five minutes prior to the scheduled time via the registered mail account of the participants.</p>
<p>3. Participants will need to decrypt the file to find a key that will give them access to the next coding round.</p>
<p>4. A google form link will also be attached to the mail sent earlier. The key value obtained by decrypting the file should be uploaded here.</p>
<p>5. The form will be opened from 12:30-1:35 pm on the same day, i.e 17th July.</p>
<p>6. Only the ones who send their values within the mentioned time will be eligible for Round 2 on the next Day.</p>
<p>Note <span style="color:red;">*</span> - The result of this round will be shared via the registered mail on 17th July itself along with further instruction.</p>
<h3>ROUND 02</h3>
<p>1. This will be conducted on 18th July from 11:30 am on HackerRank.</p>
<p>2. Participants will need to use the key obtained from round 1 to navigate to their question.</p>
<p>3. The questions here will be related to the theme F.R.I.E.N.D.S.</p>
<p>4. There will be one question on the respective key value which the participants have to solve within half an hour in any of the four languages-Java,C,C++,Python</p>
<p>For example: If the key value obtained from Round 1 is 3. Question no. 3 on the participants’ HackerRank page will need to be solved.
Solving any other question no. apart from the key value number, will lead to disqualification of the participant.
</p>
<p>Note <span style="color:red;">*</span> - The names of the winners will be announced on 18th July in our social media.
All participants will get a participation certificate. There will be a merit certificate in addition to other exciting prizes for the winners.</p>
<p>Last date of registration is 15th July, 2021.</p>
<p>Make sure you join our telegram channel to stay updated with all required information about the events. (Mandatory)</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose6()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</i></a>
<a href="https://forms.gle/1QYcviGG7GBJddMv6" target="_blank" type="button" class="btn btn-primary">Register Here!</a>
</div>
</div>
</div>
</div>
<div class="col-sm-3" data-aos="flip-right" data-aos-once="true" data-aos-delay="350">
<div class="card">
<img class="card-img-top" src="assets/image/events/8.jpeg" alt="">
<div class="card-body">
<h5 class="card-title text-light">Movie Bluff</h5>
<p class="card-text text-light">Let's test how much attention you pay while watching movies.</p>
<a onclick="modalShow7()" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="movie" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>Movie Bluff</u></h1>
</div>
<div class="modal-body">
<p>
Movie Bluff is a fun event to test how much attention you pay while watching your favourite movies and series. Put your gray matter to work and join us in. To know more about it, keep reading!!
</p>
<p>
This is a team event which is open to all. It will take place in 2 rounds.
Teams can be of 2-3 members each.
</p>
<hr>
<h3>ROUND 01</h3>
<p>1. This will be conducted on 15th July, 2021 at 7:00 PM. A quiz will be conducted whose link will be sent via registered mail 15 minutes prior time. </p>
<p>2. The time limit for this quiz will be 30 minutes. The questions will be based on posters and dialogues from famous movies.</p>
<p>3. Only one member per team has to take the quiz, violation of which will lead to disqualification. The team members can connect themselves via any suitable platform of their choice during this span.</p>
<p>4. Teams will qualify for the next round based on their score in this quiz. In case of tie, the team with maximum consecutive right answers will qualify.</p>
<p>Note <span style="color:red;">*</span> - The results of this round will be informed via an email on 16th July, 2021..</p>
<h3>ROUND 02</h3>
<p>1. On qualifying the first round a link to join the WhatsApp group will be sent to all the participants of the qualified teams and further communication will take place there.</p>
<p>2. This will be conducted over a video call whose link will be sent prior to the start of round 2. Further details will be conveyed via WhatsApp</p>
<p>3. All members of the qualified teams need to be present in the meet in video mode throughout the span of competition.</p>
<p>4. This round will take place on 17th July, 2021 from 3:00 PM.</p>
<p>Note <span style="color:red;">*</span> - The final results will be declared on our social media on 18th July.
All participants will get a participation certificate. There will be a merit certificate in addition to other exciting prizes for the winners.
</p>
<p>Last date of registration is 13th July, 2021.</p>
<p>Make sure you join our telegram channel to stay updated with all required information about the events. (Mandatory)</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose7()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</i></a>
<a href="https://forms.gle/w6eqLJdwHRaD31Zh9" target="_blank" type="button" class="btn btn-primary">Register Here!</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- -----------------------------------------THIRD COLUMN--------------------------------------------- -->
<div class="row justify-content-center">
<div class="col-lg-11">
<div class="schedule-wrapper">
<div class="row">
<div class="col-sm-3" data-aos="flip-left" data-aos-once="true">
<div class="card">
<img class="card-img-top" src="assets/image/events/9.jpeg" alt="">
<div class="card-body">
<h5 class="card-title text-light">Bukowski Parade</h5>
<p class="card-text text-light">You must participate if you claim to be a writer.</p>
<a class="btn btn-primary" onclick="modalShow8()">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="bukowski" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>Bukowski Parade - Every Writer's Delight</u></h1>
</div>
<div class="modal-body">
<p>
An artistic movement as well as a genre of poetry and spoken word where you have to impress our jury and audience with a high energy performance.
Evoke emotion and the power of everyday language and deliver with an enthusiastic voice, versus more formal or academic poetry techniques.
</p>
<p> This will be a solo event conducted in 2 rounds. If the art of slam poetry and storytelling intrigues you, keep reading.</p>
<hr>
<h3>Round 1</h3>
<p>1. Participants have to submit a video presenting an original poem or a short story in person.</p>
<p>2. The duration of video should be exactly equal to or less than 2 mins failing which they will be disqualified</p>
<p>3. Languages accepted : English and Hindi </p>
<p>4. Plagiarism of any kind might result in disqualification. </p>
<p>5. Drive link of the video has to be uploaded on the google form that will be shared via email at 9:00 PM on 13th July, 2021</p>
<p>6. The public link of the video should be uploaded in the form. Not doing so might result in disqualification of the participant.</p>
<p>7. The video must be properly trimmed with no vocal
edits/bloopers/visual effects and the voice should be clear & audible.
</p>
<p>8. Videos will be judged on the basis of vocabulary, creativity, content, originality and delivery style. </p>
<p>9. Deadline for submission of the video is 14th July, 11:59 PM.
The results of this round will be informed via email on 16th July and a WhatsApp group will be formed for the qualified candidates.
</p>
<h3>Round 2</h3>
<p>1. This round will be conducted via Airmeet on 17th July from 4:35PM.</p>
<p>2. The contestants will be given a theme via the whatsapp group at 4:00 PM. Based on that they have to prepare their content within 30 mins.</p>
<p>3. Meeting will start exactly at 4:35 pm and each participant will be called randomly one by one to present their work at the meet.</p>
<p>4. Participants should have a proper internet connection.</p>
<p>5. The performances will be judged on the basis of spontaneity, presentation style, relation of content with the theme and diversification of content.</p>
<p>The final results will be declared on our social media on 18th July.
All participants will get a participation certificate. There will be a merit certificate in addition to other exciting prizes for the winners.
</p>
<p>The winner will also get a chance to perform live in our special session on 18th July..</p>
<p>The last date of registration for this event is 12th July 2021.
Make sure you join us on telegram for all latest updates. (Mandatory)
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose8()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</i></a>
<a href="https://forms.gle/XynGXJ9iiuUvQgos6" target="_blank" type="button" class="btn btn-primary">Register Here!</a>
</div>
</div>
</div>
</div>
<div class="col-sm-3" data-aos="flip-left" data-aos-once="true" data-aos-delay="100">
<div class="card">
<img class="card-img-top" src="assets/image/events/10.jpeg" alt="">
<div class="card-body">
<h5 class="card-title text-light">Duel of Doubts</h5>
<p class="card-text text-light">Deliberation and debate is the way you stir the soul.</p>
<a onclick="modalShow9()" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="colloquy" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>Duel of Doubts</u></h1>
</div>
<div class="modal-body">
<p>
Don't you have any standpoint about the events happening? I know you do.
Wake that expressive person with thick skin to endure and understand, weapon of words ready. The event to put those forward is here.
</p>
<p>
Duel of Doubts- A battle of not just jargons, but of beliefs, cultures, disagreement in order to reach a viable conclusion. If you're
someone who's keen on making a point, has great ideas and believes in the power of the
spoken word, then this is the place for you
</p>
<hr>
<h3>ROUND 01</h3>
<p>Date: 17th July <br>
Time: 19:00 to 20:30 hrs <br>
Platform: Airmeet
</p>
<p>1. All the registered participants will be provided the link of the meet which they will have to join.</p>
<p>2. The 1st round will be a group discussion</p>
<p>3. A topic will be provided when they join the meeting and 5 min of preparation time will be provided.</p>
<p>4. The time provided for the group discussion will be 10 mins where the participants will present their views and can contradict or support each other</p>
<p>5. The participants will have to keep their videos on during the entire 10 min of the discussion.</p>
<p>6. They will be judged on their speaking skills, listening skills, confidence, fluency and knowledge on the topic.</p>
<p>7. Based on the performance in the preliminary round, a few participants will qualify for the final round.</p>
<p>Note <span style="color:red;">*</span> -Results of this round will be informed via mail by 17th July midnight.</p>
<h3>ROUND 02</h3>
<p>Date: 18th July <br>
Time: 12:00 to 14:00 hrs <br>
Platform: Airmeet
</p>
<p>1. An Airmeet link will be provided to qualified participants.</p>
<p>2. The topic of the debate will be provided an hour before the event and the participants
will be informed if they have to speak for the motion or against the motion.</p>
<p>3. Each speaker will be given a time of 3+1 min to speak. A warning bell will ring on the completion of 3 mins
and the participants will have to complete their speech before the final bell rings when 4 min is completed.</p>
<p>4. After speaking, each participant will have to face the rebuttal round where he/she will have to answer the questions asked by other participants.</p>
<p>5. Each participant will be judged on the basis of their confidence, fluency, content, and sticking to the time limit.</p>
<p>Final results will be declared on our social media on 18th July.
All participants will get a participation certificate. There will be a merit certificate in addition to other exciting prizes for the winners
</p>
<p>Last date of registration is 14th July, 2021.
Make sure you join us on telegram for the latest updates. (Mandatory)
</p>
<p>Note <span style="color:red;">*</span> -
<p>1. Rules can be changed by judges depending on the situation.</p>
<p>2. KINDLE reserves all rights of the event.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose9()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</i></a>
<a href="https://forms.gle/iRvbch9VzpooxQSU7" target="_blank" type="button" class="btn btn-primary">Register Here!</a>
</div>
</div>
</div>
</div>
<div class="col-sm-3" data-aos="flip-left" data-aos-once="true" data-aos-delay="200">
<div class="card">
<img class="card-img-top" src="assets/image/events/11.jpeg" alt="">
<div class="card-body">
<h5 class="card-title text-light">Cosmic Craft</h5>
<p class="card-text text-light">Unleash talents with creative and innovative skills within you.</p>
<a onclick="modalShow10()" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="cosmic" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>Cosmic Craft</u></h1>
</div>
<div class="modal-body">
<p>
Hello Geek minds! Here we bring an opportunity to sit among intellectual minds and bring out the hidden ingenious space scientist inside of you.
So, participate in our event- Cosmic Craft and unleash your talents with creative and innovative skills within you.
</p>
<h3>ROUND 01</h3>
<p>
Participants are required to design a spacecraft on pen and paper according to the given criteria and submit their design as a PDF in the google form, which will be provided through mail post registration.
It's advised to keep the rules in mind while designing the Spacecraft. Participants are requested to keep the design realistic.
</p>
<p><strong>Participants can participate in this event individually or as a team of two.</strong></p>
<p>1. The spacecraft should have an aerodynamic shape and can take off and cross the earth’s atmosphere safely and comfortably</p>
<p>2. It should be fuel-efficient. The details of the fuel chamber may be specified.</p>
<p>3. The spacecraft should be so designed such that it can cross random asteroid-belt/space rocks by taking minimal damage.</p>
<p>4. It should have a mechanism for collecting space samples.</p>
<p>5. It should have a feasible mechanism for safe landing.</p>
<p>6. Timeline for submission of PDF:
13th July, 12:00 noon - 15th July, 12:00 noon.
</p>
<h5>Team participation rules:</h5>
<p>1. If anyone is registering as a team then make sure that the team does not consist of more than 2 members.</p>
<p>2. Both the members of the team should submit the design in the given submission link.</p>
<p>Note <span style="color:red;">*</span> - The results for round 1 will be announced on 17th July via email and Telegram.</p>
<h3>ROUND 02</h3>
<p>
Participants whose design is impressive and realistic will qualify to Round 2 where they have to illustrate the model proposed by them.
</p>
<p>Date 18th of July, 10.00 am -11.30 am
Platform: Contestants will be sent the Airmeet link via mail to join and explain the model verbally.</p>
<p>
The names of the winners will be announced on 18th July in our social media.
All participants will get a participation certificate. There will be a merit certificate in addition to other exciting prizes for the winners.
</p>
<p>
Last date of registration is 10th July, 2021. So buckle up and be ready to participate in our greatest Astronomy event - Cosmic Craft!
</p>
<p>
Make sure you join our telegram channel to stay updated with all required information about the events. (Mandatory)
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose10()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</i></a>
<a href="https://forms.gle/KMNq7mwjsbvGgimU7" target="_blank" type="button" class="btn btn-primary">Register Here!</a>
</div>
</div>
</div>
</div>
<div class="col-sm-3" data-aos="flip-left" data-aos-once="true" data-aos-delay="300">
<div class="card">
<img class="card-img-top" src="assets/image/events/12.jpeg" alt="">
<div class="card-body">
<h5 class="card-title text-light">The Mystery Box</h5>
<p class="card-text text-light">An opportunity to help you stand out from the crowd.</p>
<a onclick="modalShow11()" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="mystery" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="exampleModalLongTitle"><u>The Mystery Box</u></h1>
</div>
<div class="modal-body">
<p>
Proving your excellence in English language and presentation skills is a significant step towards your successful university life and future career. Hence, we bring you an opportunity to help you stand out from the crowd.
</p>
<p>
This is a solo event to be conducted in two rounds on 18th July, 2021 from 3:00 PM.
</p>
<hr>
<h3>ROUND 01 - Dumb Charades</h3>
<p>1. This will be conducted on Airmeet from 3:00 PM. The lik of the meeting will be sent to the contestants with Instructions on 14th July. The participants need to join the meet according to the time specified in the mail.
</p>
<p>2. A phrase or idiom will be given to the participant.</p>
<p>3. Then that participant will be asked to act that particular idiom/phrase to the rest of the participants. They will be given 2-3 mins to guess the idiom/phrase. </p>
<p>4. After guessing the correct answer, the participant who got it correct at the first, will have to form a meaningful sentence using that idiom/phrase within 1-2mins and will be marked accordingly.</p>
<p>5. Top 10 participants will be qualified for round 2. </p>
<p>Note <span style="color:red;">*</span> - Results of this round will be shared via mail, immediately after completion of the first round. The contestants who qualify will need to be prepared for the
next round accordingly.</p>
<h3>ROUND 02 - Story Telling Competition</h3>
<p>1. This will be conducted from 4:10 PM. </p>
<p>2. A few opening lines will be marked and shared through an Excel sheet during the session.</p>
<p>3. The participants will be asked to select a marked number of their choice and the corresponding cell displaying the line will be unmarked. </p>
<p>4. Then that particular participant will have to narrate a story, starting with the opening line, for 2mins.</p>
<p>5. The best 3 story tellers will be declared as winners!</p>
<p>Note <span style="color:red;">*</span> - The final results will be declared on our social media pages on 18th July, 2021.
All participants will get participation certificates. There will be a merit certificate in addition to other exciting prizes for the winners.
</p>
<p>Last date of registration is 10th July, 2021.</p>
<p>Make sure you join our telegram channel to stay updated with all required information about the events. (Mandatory)</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="modalClose11()">Close</button>
<a href="https://t.me/joinchat/CRnsvfR8gKg0Nzll" class="btn btn-info">Telegram</i></a>
<a href="https://forms.gle/gCCWSDrRHwMXagja8" target="_blank" type="button" class="btn btn-primary">Register Here!</a>
</div>