-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUpEvents.html
2089 lines (1761 loc) · 71 KB
/
UpEvents.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 name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Upcoming Events · Media and Cultural Council, IIT Kanpur</title>
<link rel="stylesheet" href="css/UpEvents.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" integrity="sha256-h20CPZ0QyXlBuAw7A+KluUYx/3pK+c7lYEpqLTlxjYQ=" crossorigin="anonymous" />
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/loader.css">
<link rel="stylesheet" href="css/sidenavMobile.css">
<link rel="stylesheet" href="css/sidnav.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="shortcut icon" type="image/x-icon" href="img/MnC.png">
<script src="js/events.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.4/gsap.min.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="js/loader.js"></script>
<script src="js/card.js"></script>
</head>
<body>
</html>
<body>
<div class="loader-wrapper">
<span id="loader"></span>
</div>
<div class="part23" style="background-color:#ff8c42;">
<!-- <img src="img/main.png" alt="" class="aimg"> -->
</div>
<div class="cursor">
<div class="cursor__ball cursor__ball--big ">
<svg height="30" width="30">
<circle cx="15" cy="15" r="12" stroke-width="1" fill="transparent"></circle>
<circle cx="15" cy="15" r="13" stroke-width="1" fill="transparent" stroke="white"></circle>
</svg>
</div>
<div class="cursor__ball cursor__ball--small">
<svg height="10" width="10">
<circle cx="5" cy="5" r="4" stroke-width="1" fill="black"></circle>
</svg>
</div>
</div>
<div class="menu-wrap">
<input type="checkbox" class="toggler hoverable">
<div class="hamburger"><div></div></div>
<div class="menu">
<div>
<div>
<ul>
<li class="effect-1 hoverable" data-text="Text"><a href="./index.html" class='navt1'>Home</a></li>
<li class="effect-1 hoverable" data-text="Text"><a href="./about.html" class='navt2'>About Us</a></li>
<li class="effect-1 hoverable" data-text="Text"><a href="./events.html" class='navt3'>Events</a></li>
<li class="effect-1 hoverable" data-text="Text"><a href="./club.html" class='navt4'>Clubs</a></li>
<li class="effect-1 hoverable" data-text="Text"><a href="./UpEvents.html" class='navt5'>Upcoming Events</a></li>
<li class="effect-1 hoverable" data-text="Text"><a href="./services.html" class='navt6'>Services</a></li>
</ul>
</div>
<div class="box-container">
<img src="img/oat1.png" alt="" class="navimg navimg1">
<img src="img/aboutrhs.png" alt="" class="navimg navimg2">
<img src="img/eventrhs.png" alt="" class="navimg navimg3">
<img src="img/clubrhs.png" alt="" class="navimg navimg4">
<img src="img/calendarrhs.png" alt="" class="navimg navimg5">
<img src="img/servicesrhs.png" alt="" class="navimg navimg6">
</div>
<div class="social-nav model-1">
<div><a class="facebook hoverable" href="https://www.facebook.com/mnciitk"><i class="fab fa-facebook"></i></a></div>
<div><a class="youtube hoverable" href="https://www.youtube.com/user/fmciitkanpur/featured"><i class="fab fa-youtube"></i></a></div>
<div><a class="instagram hoverable" href="https://www.instagram.com/mnciitk/"><i class="fab fa-instagram"></i></a></div>
</div>
</div>
</div>
</div>
<section class="upcoming-events mega">
<div class="events-header text-center">
<h1> UPCOMING EVENTS</h1>
<p>Freshers Night</p>
</div>
</div>
<div class="row">
<div class="col-md-11 col-sm-6 leftm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#CF79FF">
<img src="https://drive.google.com/thumbnail?id=1UaBsGyeyYTe-T9GShI1hcriSmq9GkgIT" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>Media And Cultural Council</b></h1>
<!-- <span><a href="https://docs.google.com/document/d/1jLa7mPrWyaoEugjsnkymuM66Z3ldODvAJv2D7D6Ikms/edit">Click Here</a></span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1>Media And Cultural Council</h1>
</div>
</div>
<p> Hello Y20,
Greetings from the Media & Cultural Council.
We hope that your mid-semester examinations went great, and you must be finding some way to chill out and explore more activities at IITK.
We bring to you one of the flagship events of M&C Council - Freshers'20. A great opportunity to take part in the most fun, rigorous, engaging cultural activities,
showcasing your Talent. It will be one of the best IITK experience you will have. This event will also be a kickstarter for you all to join various clubs and hobby groups in the campus.
<a href="https://docs.google.com/document/d/1LPsG6Tv5SAhztdVH6EJIWw6U77Gsr3WKcBwFTRbeRI8/view" target="_">Read More</a><br><br>
</p>
<!-- <div class="event-contact">
<h1>Regards,</h1>
<span>Coordinators, Hindi Sahitya Sabha
<br></span>
</div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-sm-6 leftm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#CF79FF">
<img src="img/Freshers'20/Hindi Sahitya Sabha.png" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>हिंदी साहित्य सभा</b></h1>
<!-- <span><a href="https://docs.google.com/document/d/1jLa7mPrWyaoEugjsnkymuM66Z3ldODvAJv2D7D6Ikms/edit">Click Here</a></span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1>हिंदी साहित्य सभा</h1>
</div>
</div>
<p>
“ सफ़र में धूप तो होगी जो चल सको तो चलो
सभी हैं भीड़ में तुम भी निकल सको तो चलो
किसी के वास्ते राहें कहाँ बदलती हैं
तुम अपने आप को ख़ुद ही बदल सको तो चलो "
<a href="https://docs.google.com/document/d/1pwkwSK85xRvN9UWkHk1uwGn1D5V4XlM3DfqPQJW2RgE/edit?usp=sharing">Read More</a><br><br>
इस सफर में हमारे साथ जुड़ने के लिए नीचे दिए गए फॉर्म को भरें। फॉर्म भरने की अंतिम ताऱीख 3 जनवरी 11:59 pm है। https://forms.gle/RLUBy52hJSDXpcHG6.<br>
किसी भी संशय की स्थिति में सभा के समन्वयकों से संपर्क करें।
</p>
<div class="event-contact">
<h1>संपर्क करें</h1>
<span>
आकाश मिश्रा (+919889151107)<br>
मोहित गुप्ता (+919672573666)<br>
यश श्रीवास्तव (+918858068638)<br>
रवि प्रकाश त्रिपाठी (+919454546914)
<br><br></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-sm-6 rightm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color: #979DAD">
<img src="img/Freshers'20/Dance Club.png" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>Dance Club</b></h1>
<!-- <span>OAT</span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1>Dance Club</h1>
</div>
</div>
<p> Hey Y20!!! <br>
Hope you all are safe, using sanitizers, washing hands, keeping distance and wearing masks cuz " 2 Gaz doori mask hain zaroori! "<br>
Assuming that you had "fun" with your new friends MooKit, Gradescope, Zoom, epsilon & delta... Dance Club brings "Freshers' Bollyweek" for your feet to move, your body to groove and shake that Mid-Sem "fun" off and have some real fun ! <br>
So what exactly we're gonna do?
<a href="https://docs.google.com/document/d/1ksgyXeMdkdvSunKi2Sxzn5_5LG2UxEHHn5pxqm7-_o0/edit?usp=sharing">Read More<a>
</p>
<div class="event-contact">
<h1>Regards,
</h1>
<span>Dance Club<br><br></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-sm-6 leftm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#CF79FF">
<img src="img/Freshers'20/Dramatics Club.png" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>DRAMATICS CLUB</b></h1>
<!-- <span><a href="https://docs.google.com/document/d/1jLa7mPrWyaoEugjsnkymuM66Z3ldODvAJv2D7D6Ikms/edit">Click Here</a></span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1>DRAMATICS CLUB</h1>
</div>
</div>
<p>
Greetings Y20,<br>
As it is our campus culture, each year Dramatics club produces a street play and a mime performed solely by the freshers for the freshers! This time we bring you the chance to act in multi-logue and a sketch!
<a href="https://docs.google.com/document/d/10tQyFcogtL9o8UGZvfCW83KkJsyHdAxki9nlDLuKHyE/edit?usp=sharing">Read More</a><br>
Fill this form latest by 3 Jan, 10:00 pm.<br>
https://forms.gle/a8rQoxpxvCEWV1bL9 <br>
</p>
<div class="event-contact">
<h1>Regards,</h1>
<span>
Coordinators, Dramatics Club<br>
Lokesh Meena (9166572816)<br>
Manan Maheshwari (9214671770)<br>
Pulkit Jain (7835881767)
<br>
<br></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-sm-6 rightm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#FECC47">
<img src="img/Freshers'20/Film Club.png" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>FILM CLUB</b></h1>
<!-- <span>OAT</span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1><b>FILM CLUB</b></h1>
</div>
</div>
<p>
Hello Bachho,<br>
Greetings from the Film club. We hope you are doing well in these perpetually stressful times. For the MnC’s Freshers for Y20, we are going to have a competition based thingy where you can showcase your talent in the filmmaking domain. We will be having the following competitions for the upcoming freshers- <br>
1) Hyperlapse Stop Motion Video <br>
2) Short Filmmaking <br>
3) Plot writing/Script writing <br>
4) Fresher’s B-roll ...
<a href="https://docs.google.com/document/d/1h1OBKitGrmRai-Lt-NMi6U2fYTYaHnxgl9XPXw7XDXg/edit?usp=sharing">Read More</a></p>
<div class="event-contact">
<h1>Warm Regards,
</h1>
<span>Coordinators,<br>
Film Club, IIT Kanpur<br><br>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-sm-6 leftm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color: #F296BB">
<img src="img/Freshers'20/Design and Animation Club.jpg" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>DESIGN AND ANIMATION CLUB</b></h1>
<!-- <span><a href="https://docs.google.com/document/d/1jLa7mPrWyaoEugjsnkymuM66Z3ldODvAJv2D7D6Ikms/edit">Click Here</a></span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1>DESIGN AND ANIMATION CLUB</h1>
</div>
</div>
<p>Hola people, <br>
Greetings from The Design and Animation club. We hope you all are doing well and need a stress buster after exams. So here we are introducing the second edition of Esthétique under the banner of MnC Freshers'20.
<a href="https://docs.google.com/document/d/1mavBApeDFn0YzB8j2hqSR5QdIWuoIKAj2KlMeFblWQ8/edit?usp=sharing">Read More</a><br>
Do join us for Esthétique - Edition 2: Introduction to Illustrator <br>
1st -2nd Jan 2021 - Illustrator Installation Fest <br>
3rd -4th Jan 2021 - Workshop Series for Illustrator <br>
</p>
<div class="event-contact">
<h1>Warm Regards,</h1>
<span> Design And Animation Club<br>
<br></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-sm-6 rightm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#B1FF3A">
<img src="img/Freshers'20//English Literary Society.png" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>ENGLISH LITERARY SOCIETY</b></h1>
<!-- <span>OAT</span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1><b>ENGLISH LITERARY SOCIETY</b></h1>
</div>
</div>
<p> 1) Anchoring: <br>
Auditions on 2nd January, from 7:30pm. <br>
Be the anchors for the Freshers’ Showcase, but do note that it would be casual, fun and a different approach to anchoring than what you may have witnessed before. <br>
2) Poetry Slam: <br>
Auditions on 2nd January, from 7:30pm.<br>
Over the course of a week, we would help you refine/improve your original poem, or guide you through the process of writing a new one...
<a href="https://docs.google.com/document/d/1Y8gYzgzEZMufhLw1Uspu-sCi3HI9DUpF6-25GpUnztQ/edit?usp=sharing">Read More</a> <br>
</p>
<div class="event-contact">
<h1>Regards,
</h1>
<span>Coordinators,<br>
English Literary Society, IIT Kanpur
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-sm-6 leftm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#73F6C4">
<img src="img/Freshers'20/Music Club_page-0001 (1) (1).jpg" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>MUSIC CLUB</b></h1>
<!-- <span><a href="https://docs.google.com/document/d/1jLa7mPrWyaoEugjsnkymuM66Z3ldODvAJv2D7D6Ikms/edit">Click Here</a></span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1>MUSIC CLUB</h1>
</div>
</div>
<p>Greetings from Music Club IIT Kanpur! <br>
We are excited to finally announce the audition dates for AAGAMAN 2020(Freshers’ Y20). The platform for accepting entries has been our official facebook group Campus Melodies IIT Kanpur. We have received an overwhelming response. However, those who have not yet submitted their entries are requested ...<a href="https://docs.google.com/document/d/1E0tbuxhFd7BriO3IPJRu_1Or27I6-02AG4kMBBM9VKM/edit?usp=sharing">Read More</a><br>
Kindly fill the attached form strictly by 4:00 pm, 2nd January, 2021.
Link to the form:<br> https://forms.gle/zHGpSnRkRD2Yt6BV8
</p>
<div class="event-contact">
<h1>Regards and best wishes,</h1>
<span> Coordinators,<br> Music Club IIT Kanpur <br>
<br></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-sm-6 rightm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#B1FF3A">
<img src="img/Freshers'20/Photography Club (1).jpg" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>Photography Club</b></h1>
<!-- <span>OAT</span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1><b>Photography Club</b></h1>
</div>
</div>
<p> Hey Everyone,<br>
We hope your mid semester examinations went well. We have come up with fun events for you to get a breather from your acads i.e., the Freshers' 20. We're sure that most of you have joined the club's Facebook group and have seen the amazing photos posted on the group's wall by the other members of the campus community, and maybe perhaps even tried posting something there yourself...
<a href="https://docs.google.com/document/d/1DIThsm2H0HikK1iAASfu7owxrak2koanBYnxv_r26C4/edit?usp=sharing">Read More</a><br>
Please fill out this form - <br>
<a href="https://forms.gle/Bs4Ad8DHCrLdp6vc8">https://forms.gle/Bs4Ad8DHCrLdp6vc8</a><br></p>
<div class="event-contact">
<h1>Regards,</h1>
<span> Photography Club.<br><br></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-sm-6 leftm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#CB997E">
<img src="img/Freshers'20/Debate and Discussion Society.jpg" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>DEBATE AND DISCUSSION SOCIETY</b></h1>
<!-- <span><a href="https://docs.google.com/document/d/1jLa7mPrWyaoEugjsnkymuM66Z3ldODvAJv2D7D6Ikms/edit">Click Here</a></span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1>DEBATE AND DISCUSSION SOCIETY</h1>
</div>
</div>
<p>Hi Y20!<br>
To everyone who’s been holding their breath since orientation for an update from us: you’re probably dead, but for the rest of you we’ve planned enthralling events to get you acquainted with the world of debating!
Relevant Dates - <br>
4th Jan 7:45PM - Introduction to Argumentation <br>
5th Jan - Preliminary Rounds 1 and 2 <br>
6th Jan - Preliminary Round 3 and Finals ...
<a href="https://docs.google.com/document/d/1iZtQEzehPmkFZRwTlh8YKarxzqAU2wn-GKKdmHDzIig/edit?usp=sharing">Read More</a><br><br>
Form: https://forms.gle/fafCeNYUSMhcs2q87 <br>
Deadline to fill the form - 3 Jan 11:59PM <br>
</p>
<div class="event-contact">
<h1>Warm Regards!</h1>
<span>
Debate and Discussion Society<br>
<br></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-sm-6 rightm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color: #7BC1FF">
<img src="img/Freshers'20/Quiz Club.png" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>QUIZ CLUB</b></h1>
<!-- <span>OAT</span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1><b>QUIZ CLUB</b></h1>
</div>
</div>
<p> Aloha Y20s,<br>
We in Quiz Club are welcoming the new year and the latest batch of IITK with our special Freshers Quiz.
We have a fandom quiz scheduled for all the fiction lovers out there exclusively for the freshers.In campus the end of exams is a celebration in itself and we hope that you will have a lot of fun in solving these ones too.
<a href="https://docs.google.com/document/d/1fKExV7J_jKgJ31ucCMEdp-iazd9FAhpKU4s8Lb6qhz0/edit?usp=sharing">Read More</a></p>
<div class="event-contact">
<h1>Regards,
</h1>
<span>Coordinators, Quiz Club -<br>
Ishaan Bansal,<br>
Nallapati Chaitanya Sathvik,<br>
Utkarsh Verma.<br>
<br>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-sm-6 leftm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#CB997E">
<img src="img/Freshers'20/Book Club.jpeg" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>BOOK CLUB
</b></h1>
<!-- <span><a href="https://docs.google.com/document/d/1jLa7mPrWyaoEugjsnkymuM66Z3ldODvAJv2D7D6Ikms/edit">Click Here</a></span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1>BOOK CLUB</h1>
</div>
</div>
<p>THE PAN-GALACTIC HYPER DIMENSIONAL SUPER BOWL!<br>
As a part of the fresher’s event, the book club will be conducting a plethora of book fandom related events such as that of quote-unquote, roleplay competition and scribbl along with fun filled contests like book trivia quiz, psych deck dictionary and do you have this book!
The events will be team events and would be held over a span of two days.<br>
Further details and rules would be shared to you soon on <a href="https://discord.gg/vVw6YVx4EY">discord</a>,so hop on.
<!-- <a href="https://docs.google.com/document/d/1fhE3YFWr8cJh1vMnqNVJ-ZtiKVgBDLR0nkBrMzP56q4/edit?usp=sharing">Read More</a><br><br>
-->
</p>
<div class="event-contact">
<h1>Regards,</h1>
<span>
Coordinators, Book Club<br>
<br></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-sm-6 rightm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#DAAB65">
<img src="img/Freshers'20/Anime Society.png" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>ANIME SOCIETY</b></h1>
<!-- <span>OAT</span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1><b>ANIME SOCIETY</b></h1>
</div>
</div>
<p>Hello trainers!<br>
Now that the exams are over, it's Pokémon time! We will be hosting a
Pokémon Showdown Tournament on Friday(8th January 2021). It will be a Gen
8 Random Singles Tournament, further details about the format will be
announced before the tournament commences.<br>
Please fill in the linked Google form to register:
<a href="https://forms.gle/efffyuscCptG164X9">https://forms.gle/efffyuscCptG164X9</a> .
<a href="https://docs.google.com/document/d/1djp6YTAErg7aheBkwh1O_ONcNH4c55XrEK9rgcYNWnk/edit?usp=sharing">Read More</a></p>
<div class="event-contact">
<h1>Regards,
</h1>
<span>The Anime Society Team
<br><br>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-sm-6 leftm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#CB997E">
<img src="img/Freshers'20/Students' Opinion Society_1.jpeg" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>STUDENTS’ OPINION SOCIETY
</b></h1>
<!-- <span><a href="https://docs.google.com/document/d/1jLa7mPrWyaoEugjsnkymuM66Z3ldODvAJv2D7D6Ikms/edit">Click Here</a></span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1>STUDENTS’ OPINION SOCIETY</h1>
</div>
</div>
<p>Opinion: <br>
Students’ Opinion Society presents an enjoyment cum learning event for the Y20 batch. Opinion, is a presentation based event. Students will be divided into groups of 4-5 and will have to present a problem plaguing in currents times. The problems are related to economics, global politics,social justice or history. The event trains one to examine available resources and critically analyse them to present it in the most comprehensible
<a href="https://docs.google.com/document/d/1iYciq_BZrErowCur12LgUnukspSpb8SKUhCG2BeswWU/edit?usp=sharing">Read More</a><br>
Deadline to fill the form : 3 January 2021 , 11:59 PM <br> <a href="https://forms.gle/eQC1gJaV8HdNbgYa6">https://forms.gle/eQC1gJaV8HdNbgYa6</a> <br>
</p>
<div class="event-contact">
<h1>Regards,</h1>
<span>
Coordinators, Students’ Opinion Society<br>
<br></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-sm-6 rightm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#DAAB65">
<img src="img/Freshers'20/Students' Opinion Society_2_page-0001 (1).jpg" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>STUDENTS’ OPINION SOCIETY</b></h1>
<!-- <span>OAT</span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1><b>STUDENTS’ OPINION SOCIETY</b></h1>
</div>
</div>
<p>
Mememania :<br>
SOS presents a creative event for the Y20 batch. Mememania, is a meme making event.Students will be asked to submit their memes which should express satire in a decent way. The event aims at teaching students constructive criticism and non offensive political satire. You will be guided by members of SOS throughout the entire event.
<a href="https://docs.google.com/document/d/1iYciq_BZrErowCur12LgUnukspSpb8SKUhCG2BeswWU/edit?usp=sharing">Read More</a><br>
Deadline : 15 January 2020, 11:59 PM<br>
</p>
<div class="event-contact">
<h1>Regards,
</h1>
<span>Coordinators, Students’ Opinion Society
<br><br>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-sm-6 leftm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:black">
<img src="img/Freshers'20/Fine Arts Club.jpg" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>FINE ARTS CLUB
</b></h1>
<!-- <span><a href="https://docs.google.com/document/d/1jLa7mPrWyaoEugjsnkymuM66Z3ldODvAJv2D7D6Ikms/edit">Click Here</a></span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">
<div class="event-name">
<div class="event-head-back">
<h1>FINE ARTS CLUB</h1>
</div>
</div>
<p>
Greetings Y20! The Fine Arts Club is delighted to present our remote version of the freshers' event. We will be holding a session on origami to give you an opportunity to learn something new, as well as bond with your seniors.We'll also be having a workshop on sketching, to teach you some of the fundamentals and give you an opportunity to work on them yourselves as well to help you improve your skills.
<a href="https://docs.google.com/document/d/1azAH6CxGC2Pts3dB_WJhI3FgHpRY1NPny3DxwtpQEyU/edit?usp=sharing">Read More</a><br><br>
Deadline : 3rd January, 11:59 PM
</p>
<div class="event-contact">
<h1>Regards,</h1>
<span>
Coordinators,<br>Fine Arts Club, IIT Kanpur
<br>
<br></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-sm-6 rightm">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="clubs">
<div class="clubs-preview" style="background-color:#DAAB65">
<img src="img/Freshers'20/Humour House.png" height="100%"alt="" style="margin-left: auto;margin-right: auto; display:block;">
</div>
<div class="event-time">
<!-- <p>29 JULY<br>
10PM</p> -->
</div>
<div class="event-name">
<div class="event-head">
<h1><b>HUMOUR HOUSE</b></h1>
<!-- <span>OAT</span> -->
</div>
</div>
</div>
</div>
<div class="flip-card-back">
<div class="event-info">