-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
965 lines (855 loc) · 82 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width">
<meta name="format-detection" content="telephone=no">
<title>Effervescence'21</title>
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i" rel="stylesheet">
<style type="text/css">
/* ====== Fonts ====== */
@font-face {
font-family: 'proxima_nova_rgregular';
src: url('http://designmedi.com/fonts/proximanova-regular-webfont.eot');
src: url('http://designmedi.com/fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'), url('http://designmedi.com/fonts/proximanova-regular-webfont.woff') format('woff'), url('http://designmedi.com/fonts/proximanova-regular-webfont.ttf') format('truetype'), url('http://designmedi.com/fonts/proximanova-regular-webfont.svg#proxima_nova_rgregular') format('svg');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'proxima_novasemibold';
src: url('http://designmedi.com/fonts/proximanova-semibold-webfont.eot');
src: url('http://designmedi.com/fonts/proximanova-semibold-webfont.eot?#iefix') format('embedded-opentype'), url('http://designmedi.com/fonts/proximanova-semibold-webfont.woff') format('woff'), url('http://designmedi.com/fonts/proximanova-semibold-webfont.ttf') format('truetype'), url('http://designmedi.com/fonts/proximanova-semibold-webfont.svg#proxima_novasemibold') format('svg');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'proxima_nova_rgbold';
src: url('http://designmedi.com/fonts/proximanova-bold-webfont.eot');
src: url('http://designmedi.com/fonts/proximanova-bold-webfont.eot?#iefix') format('embedded-opentype'), url('http://designmedi.com/fonts/proximanova-bold-webfont.woff') format('woff'), url('http://designmedi.com/fonts/proximanova-bold-webfont.ttf') format('truetype'), url('http://designmedi.com/fonts/proximanova-bold-webfont.svg#proxima_nova_rgbold') format('svg');
font-weight: 700;
font-style: normal;
}
/* ====== Client-specific Styles Bring inline: No ====== */
#outlook a {padding:0;}
.ExternalClass {width:100%;}
.ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height: 100%;}
table td {border-collapse: collapse;}
a{text-decoration:none !important;}
p {margin: 0px 0px !important;}
.header-mobile-link,.header-mobile-link a{color:#FFFFFF !important;text-decoration:none !important;}
.footer-mobile-link,.footer-mobile-link a{color:#ffffff !important;text-decoration:none !important;}
.main-color,.main-color a,.footer-links a,.text a,.h1 a,.h2 a{text-decoration:none !important;}
ol, ul, li {
list-style: outside none none !important;
}
#module-list li {
position: relative;
}
#module-list{
padding:0;
margin-block-end: 0;
}
/* ====== Mobile Styles Bring inline: No ====== */
@media only screen and (max-width: 550px) {
table[class="container"] {width: 440px!important;text-align:center!important;}
table[class="innercontainer"] {width: 200px!important;text-align:center!important;}
td[class="centercontainer"],table[class="centercontainer"]{width:100% !important;text-align:center !important;clear:both;}
td[class="split"]{width: 100% !important;padding-right: 0px !important;padding-left: 0px !important;display: block !important;text-align:center !important;}
td[class="split1"]{width: 100% !important;padding-right: 0px !important;padding-left: 0px !important;display: block !important;}
img[class="banner"] {width:250px !important;height:auto!important;}
td[class="hide"],img[class="hide"]{display:none !important;}
td[class="padding-20"]{padding-top:20px;padding-bottom:20px;}
td[class="padding-30"]{padding-top:30px;}
td[class="h2"]{text-align:center!important;}
td[class="text"]{text-align:center!important;}
.footer-ad{
margin: 0;
}
.grid-res{
display: grid;
grid-template-columns: 200px auto;
grid-column-gap: 10px;
}
#footer-spl{
display: none !important;
}
}
@media only screen and (max-width: 480px) {
table[class="container"] {width: 280px;text-align:center!important;}
/* table[class="about-box"] {width: 60vw;text-align:center!important;} */
table[class="innercontainer"] {width: 180px!important;text-align:center!important;}
td[class="centercontainer"],table[class="centercontainer"]{width:100% !important;text-align:center !important;clear:both;}
td[class="split"]{width: 100% !important;padding-right: 0px !important;padding-left: 0px !important;display: block !important;text-align:center !important;}
td[class="split1"]{width: 100% !important;padding-right: 0px !important;padding-left: 0px !important;display: block !important;}
img[class="banner"] {height:auto!important;}
td[class="hide"],img[class="hide"]{display:none !important;}
td[class="padding-30"]{padding-top:30px;}
td[class="padding-20"]{padding-top:20px;padding-bottom:20px;}
td[class="h2"]{text-align:center!important;}
td[class="text"]{text-align:center!important;}
.grid-res{
display: grid;
grid-template-columns: 200px auto;
grid-column-gap: 10px;
}
#footer-spl{
display: none !important;
}
}
</style>
<style>
body{
font-family: 'Montserrat', sans-serif;
margin: 0;
}
h1,h2,h3,h4,h5,h6{
font-family: 'Playfair Display', serif;
color: #000000;
margin-top: 0;
}
.primary{
background: #fcb545;
}
.bg_white{
background: #ffffff;
}
.bg_light{
background: #2f2f2f;
}
.bg_black{
background: #000000;
}
.email-section{
padding:2.5em;
}
.hero{
position: relative;
}
.hero .text{
color: rgba(255,255,255,.8);
}
.hero .text h2{
color: #ffffff;
font-size: 30px;
margin-bottom: 0;
}
.heading-section h2{
color: #000000;
font-size: 28px;
margin-top: 0;
line-height: 1.4;
}
.heading-section .subheading{
margin-bottom: 20px !important;
display: inline-block;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
color: #ffffff;
position: relative;
}
.heading-section .subheading::{
position: absolute;
left: 0;
right: 0;
bottom: -10px;
content: '';
width: 100%;
height: 2px;
background: #66cdea;
margin: 0 auto;
}
.heading-section-white{
color: rgba(255,255,255,.8);
}
.heading-section-white h2{
font-size: 28px;
line-height: 1;
padding-bottom: 0;
}
.heading-section-white h2{
color: #ffffff;
}
.heading-section-white .subheading{
margin-bottom: 0;
display: inline-block;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
color: rgba(255,255,255,.4);
}
p{
color: #9B9B9B;
font-family: 'proxima_nova_rgregular', Helvetica, Arial, sans-serif;
font-weight: 100;
line-height: 1.4;
}
.glp-row{
display: table-row;
}
.glp-cell{
width: 50%;
}
.cont-about{
background-image: url("https://github.com/effe-iiita/effe21-email/blob/master/images/about-bg2.png?raw=true");
background-repeat:no-repeat;
object-fit: cover;
background-size: cover;
}
.glps{
font-weight: 700;
}
.imag{
width: 100%;
max-width: 600px;
height: 300px;
object-fit:cover;
margin: auto;
display: block;
}
@media screen and (max-width: 500px) {
.icon{
text-align: left;
}
.text-services{
padding-left: 0;
padding-right: 20px;
text-align: left;
}
.glp-row1, .glp-row3{
display: flex;
flex-direction: column-reverse;
}
.glp-row2, .glp-row4{
display: flex;
flex-direction: column;
}
.glp-cell{
width: 90%;
margin-left: 5%;
}
.imag{
height: 200px;
}
.imag{
width: auto;
max-width: 600px;
height: 300px;
object-fit:cover;
margin: auto;
display: block;
}
}
</style>
<script src="https://kit.fontawesome.com/5f25c905f7.js" crossorigin="anonymous"></script>
<!--[if mso]>
<style type="text/css"> body,table tr,table td,a, span,table.MsoNormalTable { font-family:Arial, Helvetica, sans-serif !important; }</style>
<!--<![endif]-->
</head>
<body>
<!-- Wrapper Table -->
<table max-width="600px" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; mso-table-lspace: 0pt;mso-table-rspace: 0pt;margin: 0 auto;padding: 0;max-width: 600px !important;line-height: 100% !important;">
<tbody><tr>
<td align="center" valign="top">
<ul id="module-list" class="ui-sortable">
<li class="ui-sortable-handle">
<div class="options" style="display: none;">
<div class="options-menu">
<a title="remove module" class="remove-module" href=""> <span class="icon-minus"></span></a>
<a title="duplicate module" class="add-module" href=""><span class="icon-plus"></span></a>
<a title="code module" rel="modal:open" href="#code_modal_edit" class="code-section"> <span class="icon-embed2"></span></a>
<a title="bg" class="change-background" rel="modal:open" href="#background_image"> <span class="icon-image"></span></a>
</div>
</div>
<!-- ======= Top Banner Module ====== -->
<table width="600px" align="center" border="0" cellspacing="0" cellpadding="0" background="https://github.com/effe-iiita/effe21-email/blob/master/images/animate.gif?raw=true" class="change_bg" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-image: url(images/animate.gif);background-repeat: no-repeat; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;background-position: top center;" bgcolor="#251f2c">
<tbody><tr>
<td align="center" valign="top" style="background-image: url(https://github.com/effe-iiita/effe21-email/blob/master/images/animate.gif?raw=true);">
<!--[if gte mso 9]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="mso-width-percent:1000;">
<v:fill type="frame" src="images/animate.gif" color="#222325"></v:fill>
<v:textbox style="mso-fit-shape-to-text:true" inset="0,0,0,0">
<![endif]-->
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;" class="container">
<tbody><tr>
<td>
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;" class="container">
<tbody>
<tr>
<td valign="top">
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;" class="container">
<tbody><tr>
<!--
<td width="100%" align="center" valign="middle" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;" class="split">
<a class="image_modal_edit" href="#" target="_blank" style="text-decoration: none!important;color:#FFFFFF;">
<img mc:edit="logo_header" editable="true" label="headerlogo" src="images/logo.png" width="100" height="42" alt="EVENTUS." style="outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;border: none;">
</a>
</td>
-->
<td height="20" width="10%" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;" class="split"> </td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td height="30" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
<!-- time animated gif -->
<tr>
<td align="center" valign="top">
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;" class="container">
<tbody><tr>
<td width="305" align="center" valign="top"><a href="#" class="image_modal_edit"><img mc:edit="timer_img" editable="true" src="https://github.com/effe-iiita/effe21-email/blob/master/images/new-logo-wb.png?raw=true" width="250px" alt="" class="banner" border="0" style="display:block"></a></td>
</tr>
</tbody></table>
</td>
</tr>
<!-- time animated gif ends -->
<tr>
<td mc:edit="event_title" align="center" valign="top" style="color: #FFFFFF;font-family: 'proxima_nova_rgbold', Arial, Helvetica, sans-serif;font-size: 34px;font-weight:700;line-height: 44px;letter-spacing:3px;text-align:center;text-transform:uppercase;padding-bottom: 10px;padding-top: 30px;" id="animate1">
<div class="sim-row-edit" data-type="title"><multiline><span class="main-color" style="color: #66cdea;">Effervescence'21</span></multiline></div>
</td>
</tr>
<tr>
<td mc:edit="event_date" align="center" valign="top" style="color: #FFFFFF;font-family: 'proxima_novasemibold', Arial, Helvetica, sans-serif; font-size: 18px;font-weight:600;line-height: 24px;letter-spacing:2px;text-align:center;text-transform:uppercase; padding-bottom: 40px;" id="animate3">
<div class="sim-row-edit" data-type="title"><multiline>IIIT Allahabad</multiline></div>
</td>
</tr>
</tbody></table>
</td>
</tr>
</tbody></table>
<!--[if gte mso 9]>
</v:textbox>
</v:rect>
<![endif]-->
</td>
</tr>
</tbody>
</table>
<!-- ======= Top Banner Module Ends ====== -->
</li>
<!---------------------------------------------------------- ABOUT US -------------------------------------------------------------------->
<li class="ui-sortable-handle">
<div class="options" style="display: none;">
<div class="options-menu">
<a title="remove module" class="remove-module" href=""> <span class="icon-minus"></span></a>
<a title="duplicate module" class="add-module" href=""><span class="icon-plus"></span></a>
</div>
</div>
<!-- ======= Heading + Description ====== -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #FFFFFF;" class="bg-color1">
<tbody>
<tr>
<td align="center" valign="top">
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;" class="container cont-about">
<tbody><tr>
<td align="center">
<table width="580" align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;" class="container about-box">
<tbody><tr>
<td align="center" valign="top" height="50" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
<tr>
<td mc:edit="heading1" align="center" style="font-family: 'proxima_nova_rgbold', Arial, Helvetica, sans-serif;font-size: 18px;font-weight:700;text-align: center;text-transform: uppercase;padding-bottom: 8px;line-height: 26px;color: #ffffff;" class="h1">
<div class="sim-row-edit" data-type="title"><multiline>About event</multiline></div>
</td>
</tr>
<tr>
<td align="center">
<table width="25" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
<tbody><tr>
<td width="25" height="3" style="font-size: 0px;line-height: 0px;border-bottom: 3px solid #66cdea;" class="underline"></td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td mc:edit="aem-des" align="center" style="font-family: 'proxima_nova_rgregular', Helvetica, Arial, sans-serif;font-size: 14px;text-align: center;line-height: 24px;padding-top: 15px;padding-left: 30px;padding-right: 30px;color: #ffffff;" class="text">
<!--[if gte mso 9]>
<span style="font-size:13px;">
<![endif]--><div class="sim-row-edit" data-type="title"><multiline label="eventdescription">Effervescence is the annual cultural festival of IIIT Allahabad, an Institute of national importance established by the HRD Ministry, Govt. Of India. At Effervescence, We believe that while the academic achievements are important, the cultural activities foster the real spirit of kinship and skills for sublime social existence, thereby promoting the overall development of an individual. Over the years, the fest has risen to great standards - its popularity ramped up, reach extended far and wide to national circuits, and its name became a by-word for a grand celebration. The fest garners a total footfall of about 21k, with participants from over 150 colleges of the country. Our online events have been a real eye-opener, with participation from over 25 countries.</multiline></div><!--[if gte mso 9]>
</span>
<![endif]-->
</td>
</tr>
<tr>
<td align="center" valign="top" style="padding-top:30px;padding-bottom:40px;">
<!-- button -->
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
<tbody><tr>
<td mc:edit="button_l" align="center" valign="middle" style="color: #FFFFFF;padding-left: 25px;padding-right: 25px;padding-top:12px;padding-bottom:12px;border-radius: 4px;background-color: #66cdea;text-transform:uppercase;font-weight:400;font-family: 'proxima_nova_rgregular', Arial, sans-serif;" class="main-bg-color">
<multiline><a class="sim-row-edit" data-type="link" href="https://www.facebook.com/effervescence.iiita/" style="color: #2f2f2f;text-align: center;font-weight:600;text-decoration: none;-webkit-text-size-adjust: none;font-size: 14px;" target="_blank">Know More</a></multiline>
</td>
</tr>
</tbody></table>
<!-- button ends -->
</td>
</tr>
</tbody></table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- ======= Heading + Description ====== -->
</li>
<!---------------------------------------------------------- GLIMPSES -------------------------------------------------------------------->
<li>
<center style="width: 600px; background-color: #f1f1f1;">
<div style="display: none; font-size: 1px;max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;">
‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
</div>
<div style="max-width: 600px; margin: 0 auto;" class="email-container">
<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: auto;">
<!-- <tr>
<td class="bg_white logo" style="padding: 1em 2.5em; text-align: center">
<img src="https://github.com/thesmallstar/effe-email/blob/master/images/logo0.png?raw=true" height="120px">
</td>
</tr> -->
<tr>
<td class="bg_white" style="background: #66cdea;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="bg_white email-section">
<div class="heading-section glps" style="text-align: center; padding: 0 30px;">
<span class="subheading glps" style="font-size:1.5rem;font-weight: 600;color:#2f2f2f">Glimpses
<hr style="width:100%; text-align:left; margin-left:0; color:#66cdea; background-color:#66cdea; border: 1.5px solid #66cdea;">
</span>
</div>
</td>
</tr>
<tr>
<td class="bg_light email-section" style="padding: 0; width: 100%;">
<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr class="glp-row glp-row1">
<td valign="middle" class="glp-cell">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="text-services" style="text-align: center; padding: 20px 30px;">
<div class="heading-section">
<span class="subheading">Mariana Bo
<hr style="width:100%; text-align:left; margin-left:0; color:#66cdea; background-color:#66cdea; border: 1px solid #66cdea;">
</span>
<p>Rock & Rave on. Staging and recreation concurrently. Spectacular night to take a trip down memory lane. Contended and obliged to be part of jollification of such a sort.</p>
</div>
</td>
</tr>
</table>
</td>
<td valign="middle" class="glp-cell">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td >
<img class="imag" src="https://github.com/effe-iiita/effe21-email/blob/master/images/mariana.jpg?raw=true" alt="Mariana Bo" style="-webkit-transform: scaleX(-1);" >
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="bg_light email-section" style="padding: 0; width: 100%;">
<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr class="glp-row glp-row2">
<td valign="middle" class="glp-cell">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td >
<img class= "imag" src="https://github.com/effe-iiita/effe21-email/blob/master/images/vishalM.jpeg?raw=true" alt="Vishal" >
</td>
</tr>
</table>
</td>
<td valign="middle" class="glp-cell">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="text-services" style="text-align: center; padding: 20px 30px;">
<div class="heading-section">
<span class="subheading">Vishal Mishra
<hr style="width:100%; text-align:left; margin-left:0; color:#66cdea; background-color:#66cdea; border: 1px solid #66cdea;">
</span>
<p>An euphonious and heavenly evening. Vishal Mishra, prominent for his heartfelt melody, enlightened the audience with his odyssey and performed a handful number of his eminent songs.</p>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="bg_light email-section" style="padding: 0; width: 100%;">
<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr class="glp-row glp-row3">
<td valign="middle" class="glp-cell">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="text-services" style="text-align: center; padding: 20px 30px;">
<div class="heading-section">
<span class="subheading">Neeti Mohan
<hr style="width:100%; text-align:left; margin-left:0; color:#66cdea; background-color:#66cdea; border: 1px solid #66cdea;">
</span>
<p>"Performance and enjoyment at the same time, cheerful people, great crowd and the earnest host have made it one of our favourites. A resounding experience for us."</p>
</div>
</td>
</tr>
</table>
</td>
<td valign="middle" class="glp-cell">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td>
<img class="imag" src="https://github.com/effe-iiita/effe21-email/blob/master/images/neetim.jpg?raw=true" alt="Neeti Mohan" >
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="bg_light email-section" style="padding: 0; width: 100%;">
<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr class="glp-row glp-row4">
<td valign="middle" class="glp-cell">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td>
<img class="imag" src="https://github.com/effe-iiita/effe21-email/blob/master/images/ritviz.jpg?raw=true" alt="Ritviz" >
</td>
</tr>
</table>
</td>
<td valign="middle" class="glp-cell">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="text-services" style="text-align: center; padding: 20px 30px;">
<div class="heading-section">
<span class="subheading">Ritviz
<hr style="width:100%; text-align:left; margin-left:0; color:#66cdea; background-color:#66cdea; border: 1px solid #66cdea;">
</span>
<p>"Sublime crowd, patient listeners and a great night to remember. The organizers have taken a huge responsibility in making the fest grand and a successful story. Happy to be a part of a celebration of such a kind."</p>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</center>
</li>
<!---------------------------------------------------------- BENEFITS -------------------------------------------------------------------->
<li class="ui-sortable-handle">
<div class="options" style="display: none;">
<div class="options-menu">
<a title="remove module" class="remove-module" href=""> <span class="icon-minus"></span></a>
<a title="duplicate module" class="add-module" href=""><span class="icon-plus"></span></a>
</div>
</div>
<!-- ======= Workshops 3 Column Module ====== -->
<table width="40%" border="0" cellpadding="0" cellspacing="0" align="center" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #ffffff;" class="bg-color1">
<tbody><tr>
<td>
<table width="600" align="center" border="0" cellspacing="0" cellpadding="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;bac" class="container">
<tbody><tr>
<td align="center">
<table width="580" align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;" class="container">
<tbody><tr>
<td align="center" valign="top" height="50" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
<tr>
<td mc:edit="heading4" align="center" style="font-family: 'proxima_nova_rgbold', Arial, Helvetica, sans-serif;font-size: 1.5rem;font-weight:700;text-transform: uppercase;padding-bottom: 8px;line-height: 26px;color: #454545;" class="h1">
<div class="sim-row-edit" data-type="title"><multiline>BENEFITS</multiline></div>
</td>
</tr>
<tr>
<td align="center">
<table width="120" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
<tbody><tr>
<td width="25" height="0" style="font-size: 0px;line-height: 0px;border-bottom: 3px solid #66cdea;" class="underline"></td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td align="center" valign="top" height="60" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
<tr>
<td align="center" valign="top" width="100%">
<table width="60" align="left" border="0" cellspacing="0" cellpadding="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;border-spacing: 0;padding: 0;background-color: rgb(247,247,247)" class="container">
<tbody><tr>
<td class="split" valign="top">
<table width="186" bgcolor="#F7F7F7" align="center" cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;border-radius:5px;border-spacing: 0;padding: 0;" class="container">
<tbody>
<tr>
<td align="center" valign="top" height="30" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
<tr>
<td align="center" style="padding: 0;vertical-align: top;border-collapse: collapse !important;">
<table width="102" height="50" border="0" align="center" cellspacing="0" cellpadding="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;border-radius: 4px; border-spacing: 0;padding: 0;">
<tbody>
<!---------------------------------------------- SPACE FOR IMAGE ------------------------------------------->
<img src="https://github.com/effe-iiita/effe21-email/blob/master/images/reach.png?raw=true" style="width:80px">
</tbody>
</table>
</td>
</tr>
<tr>
<td align="center" valign="top" height="25" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
<tr>
<td mc:edit="w3ct1" width="100%" style="text-align: center;font-family: 'proxima_nova_rgregular',Helvetica,Arial,sans-serif;font-size: 18px;line-height: 24px;font-weight:600;padding-left: 15px;padding-right: 15px;color: #454545;" class="h2">
<div class="sim-row-edit" data-type="title"><multiline>Pan India Reach</multiline></div>
</td>
</tr>
<tr>
<td mc:edit="w3cde1" width="100%" style="text-align: center;font-family: 'proxima_nova_rgregular',Helvetica,Arial,sans-serif;font-size: 14px;line-height: 24px;padding-left: 15px;padding-right: 15px;padding-top: 12px;padding-bottom: 25px;color: #9B9B9B;" class="text">
<!--[if gte mso 9]>
<span style="font-size:13px;">
<![endif]--><div class="sim-row-edit" data-type="title"><multiline>Far far away, behind the word mountains, far from the countries' Campus Ambassadors in over 400 and participants from over 120 colleges across the Nation.</multiline></div><!--[if gte mso 9]>
</span>
<![endif]-->
</td>
</tr>
</tbody></table>
</td>
<td class="split">
<!-- Space -->
<table width="10" align="left" cellspacing="0" cellpadding="0" border="0" class="container" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;border-spacing: 0;padding: 0;">
<tbody><tr>
<td width="100%" height="45" style="font-size:0;line-height:0;">
</td>
</tr>
</tbody></table>
</td>
<td class="split" valign="top">
<table width="186" bgcolor="#F7F7F7" align="left" cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;border-radius:5px;border-spacing: 0;padding: 0;" class="container">
<tbody><tr>
<td align="center" valign="top" height="30" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
<tr>
<td align="center" style="padding: 0;vertical-align: top;border-collapse: collapse !important;">
<table width="102" height="50" border="0" align="center" cellspacing="0" cellpadding="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;border-radius: 4px; border-spacing: 0;padding: 0;">
<tbody>
<!---------------------------------------------- SPACE FOR IMAGE ------------------------------------------->
<img src="https://github.com/effe-iiita/effe21-email/blob/master/images/Group_P.png?raw=true" style="width:75px">
</tbody>
</table>
</td>
</tr>
<tr>
<td align="center" valign="top" height="25" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
<tr>
<td mc:edit="w3ct2" width="100%" style="text-align: center;font-family: 'proxima_nova_rgregular',Helvetica,Arial,sans-serif;font-size: 18px;font-weight:600;line-height: 24px;padding-left: 15px;padding-right: 15px;color: #454545;" class="h2">
<div class="sim-row-edit" data-type="title"><multiline>Growing Popularity</multiline><div>
</div></div></td>
</tr>
<tr>
<td mc:edit="w3cde2" width="100%" style="text-align: center;font-family: 'proxima_nova_rgregular',Helvetica,Arial,sans-serif;font-size: 14px;line-height: 24px;padding-left: 15px;padding-right: 15px;padding-top: 12px;padding-bottom: 25px;color: #9B9B9B;" class="text">
<!--[if gte mso 9]>
<span style="font-size:13px;">
<![endif]--><div class="sim-row-edit" data-type="title"><multiline>Effervescence 2020 was a phenomenal success with participation from students across 150+ colleges from all over India.</multiline></div><!--[if gte mso 9]>
</span>
<![endif]-->
</td>
</tr>
</tbody></table>
</td>
<td class="split">
<!-- Space -->
<table width="10" align="left" cellspacing="0" cellpadding="0" border="0" class="container" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;border-spacing: 0;padding: 0;">
<tbody><tr>
<td width="100%" height="45" style="font-size:0;line-height:0;">
</td>
</tr>
</tbody></table>
</td>
<td class="split" valign="top">
<table width="186" bgcolor="#F7F7F7" align="left" cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt;border-radius:5px;border-spacing: 0;padding: 0;" class="container">
<tbody><tr>
<td align="center" valign="top" height="30" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
<tr>
<td align="center" style="padding: 0;vertical-align: top;border-collapse: collapse !important;">
<table width="102" height="50" border="0" align="center" cellspacing="0" cellpadding="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;border-radius: 4px; border-spacing: 0;padding: 0;">
<tbody>
<!---------------------------------------------- SPACE FOR IMAGE ------------------------------------------->
<img src="https://github.com/effe-iiita/effe21-email/blob/master/images/excel.png?raw=true" style="width:80px">
</tbody>
</table>
</td>
</tr>
<tr>
<td align="center" valign="top" height="25" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
<tr>
<td mc:edit="w3ct3" width="100%" style="text-align: center;font-family: 'proxima_nova_rgregular',Helvetica,Arial,sans-serif;font-size: 18px;line-height: 24px;font-weight:600;padding-left: 15px;padding-right: 15px;color: #454545;" class="h2">
<div class="sim-row-edit" data-type="title"><multiline>Affordable excellence</multiline></div>
</td>
</tr>
<tr>
<td mc:edit="w3cde3" width="100%" style="text-align: center;font-family: 'proxima_nova_rgregular',Helvetica,Arial,sans-serif;font-size: 14px;line-height: 24px;padding-left: 15px;padding-right: 15px;padding-top: 12px;padding-bottom: 25px;color: #9B9B9B;" class="text">
<!--[if gte mso 9]>
<span style="font-size:13px;">
<![endif]--><div class="sim-row-edit" data-type="title"><multiline>With a dedicated team, we deliver what we promise. It may be an association deliverable for the 4 best days of your life.</multiline></div><!--[if gte mso 9]>
</span>
<![endif]-->
</td>
</tr>
</tbody></table>
</td>
</tr>
</tbody></table>
</td>
</tr>
<td align="center" valign="top" height="20" style="font-size: 0px;line-height: 0px;mso-line-height-rule: exactly;border-bottom-left-radius: 6px;border-bottom-right-radius: 6px;background-color: #2f2f2f;" class="main-bg-color"> </td>
<tr>
<td align="center" valign="top" height="50" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
</tbody></table>
</td>
</tr>
</tbody></table>
</td>
</tr>
</tbody>
</table>
<!-- ======= Workshops 3 Column Module Ends ====== -->
</li>
<!-- -------------------------------------------------------- FOOTER ------------------------------------------------------------------ -->
<li class="ui-sortable-handle">
<div class="options" style="display: none;">
<div class="options-menu">
<a title="remove module" class="remove-module" href=""> <span class="icon-minus"></span></a>
<a title="duplicate module" class="add-module" href=""><span class="icon-plus"></span></a>
</div>
</div>
<!-- ======= Footer starts ====== -->
<table width="600" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;background-color: #191919;">
<tbody>
<tr>
<td>
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" class="container" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
<tbody><tr>
<td align="center">
<table width="580" align="center" border="0" cellpadding="0" cellspacing="0" class="innercontainer" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
<tbody><tr>
<td align="center" height="50" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
<tr>
<td align="center">
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" class="innercontainer" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
<tbody><tr class="grid-res">
<td width="49%" valign="top" class="split">
<!-- left column -->
<table class="footer-ad" align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
<tbody><tr>
<td mc:edit="footer_t1" style="font-family: 'proxima_novasemibold', Arial, helvetica, sans-serif;font-size: 18px;font-weight:600;text-align: left !important;color: #d2d2d2;" class="h2">
<div class="sim-row-edit" data-type="title"><multiline>Address</multiline></div>
</td>
</tr>
<tr>
<td mc:edit="address" style="font-family: 'proxima_nova_rgregular', Arial, helvetica, sans-serif; font-size: 14px; color: #454545; text-align:left !important;line-height:22px;padding-top:15px;">
<div class="sim-row-edit" data-type="title"><multiline><span class="footer-mobile-link">Room no. 1306<br>
Admin Extension 1, IIIT Allahabad,<br> Prayagraj, U.P.<br>
© 2021 Effervescence. <br> All Rights Reserved.<br></span></multiline></div>
</td>
</tr>
<tr>
<td align="center" height="20" style="font-size:0px; line-height:0px;"> </td>
</tr>
</tbody></table>
</td>
<!-- end of left column -->
<td id="footer-spl" width="2%" align="center" class="split" valign="top" height="30" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
<td width="49%" valign="top" class="split">
<!-- start of right column -->
<table align="center" border="0" cellpadding="0" cellspacing="0" class="innercontainer" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
<tbody><tr>
<td mc:edit="footer_t2" style="font-family: 'proxima_novasemibold', Arial, helvetica, sans-serif;font-size: 18px;font-weight:600;text-align: left !important;color: #d2d2d2;" class="h2">
<div class="sim-row-edit" data-type="title"><multiline>Contact Us</multiline></div>
</td>
</tr>
<tr>
<td mc:edit="footer_text" style="font-family: 'proxima_nova_rgregular', Arial, helvetica, sans-serif; font-size: 14px; color: #454545 !important; text-align:left !important;line-height:22px;padding-top:15px;text-decoration:none !important;">
<span class="footer-mobile-link">
<a href="#" class="main-color" style="color: #ffffff; font-size: 1rem;"> effervescence@iiita.ac.in</a></multiline></div></span>
</td>
</tr>
<tr>
<td align="center" height="20" style="font-size:0px; line-height:0px;"> </td>
</tr>
<tr>
<td align="left" valign="middle">
<!-- social icons -->
<table width="120" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
<tbody>
<tr>
<td align="center" valign="middle" width="30" height="30" style="font-size: 0;line-height: 0;border-radius: 100%;" class="main-bg-color"></td>
<a class="image_modal_edit" href="https://www.facebook.com/effervescence.iiita/" target="_blank" style="color: #ffffff;text-decoration: none!important;font-size: 2rem;padding: 2px;">
<img src="https://github.com/effe-iiita/effe21-email/blob/master/images/Vector-2.png?raw=true" alt="Fb"></a>
<td width="15" align="left" style="font-size:0;line-height:0;"> </td>
<td align="center" valign="middle" width="30" height="30" style="font-size: 0;line-height: 0;border-radius: 100%;" class="main-bg-color"></td>
<a class="image_modal_edit" href="https://www.youtube.com/channel/UCSKd_5A0v36U5Bt0y-SDJWg" target="_blank" style="color: #ffffff;text-decoration: none!important;font-size: 2rem;padding: 2px;">
<img src="https://github.com/effe-iiita/effe21-email/blob/master/images/Vector-1.png?raw=true" alt="youtube"></a>
<td width="15" align="left" style="font-size:0;line-height:0;"> </td>
<td align="center" valign="middle" width="30" height="30" style="font-size: 0;line-height: 0;border-radius: 100%;" class="main-bg-color"></td>
<a class="image_modal_edit" href="https://twitter.com/goEffervescence" target="_blank" style="color: #ffffff;text-decoration: none!important;font-size: 2rem;padding: 2px;">
<img src="https://raw.githubusercontent.com/effe-iiita/effe21-email/master/images/Vector-3.png?raw=true" alt="Twitter"></a>
<td align="center" valign="middle" width="30" height="30" style="font-size: 0;line-height: 0;border-radius: 100%;" class="main-bg-color"></td>
<a class="image_modal_edit" href="https://www.instagram.com/goeffervescence/" target="_blank" style="color: #ffffff;text-decoration: none!important;font-size: 2rem;padding: 2px;">
<img src="https://github.com/effe-iiita/effe21-email/blob/master/images/Vector.png?raw=true" alt="Insta"></a>
<td width="15" align="left" style="font-size:0;line-height:0;"> </td>
</tr>
</tbody>
</table>
<!-- end social icons -->
</td>
</tr>
<tr>
<td align="center" height="50" style="font-size:0px; line-height:0px; mso-line-height-rule: exactly;"> </td>
</tr>
</tbody></table>
</td>
<!-- end of right column -->
</tr>
</tbody></table>
</td>
</tr>
</tbody></table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- ======= Footer Ends ====== -->
</li>
<li class="ui-sortable-handle">
<!-- ======= Address ====== -->
<!-- ======= Address Ends ====== -->
</li>
</ul>
</td>
</tr>
</tbody>
</table>
<!-- Wrapper Table Ends -->
</body>
</html>