-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcr.html
3715 lines (3715 loc) · 311 KB
/
cr.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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<style type="text/css">
th { font-weight:normal;}
/* Outlook link fix */
#outlook a {padding:0;}
/* Hotmail background & line height fixes */
.ExternalClass {width:100% !important;}
.ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font,
.ExternalClass td, .ExternalClass div {line-height: 100%;}
.ExternalClass p {margin-bottom:0; margin:0}
/* Image borders & formatting */
img {outline:none; text-decoration:none; -ms-interpolation-mode: bicubic;}
a img {border:none;}
/* Re-style iPhone automatic links (eg. phone numbers) */
.applelinks a {color:#222222; text-decoration: none;}
/* Hotmail symbol fix for mobile devices */
.ExternalClass img[class^=Emoji] { width: 10px !important; height: 10px !important; display: inline !important; }
table { border-collapse:collapse !important;}
th {mso-table-lspace:0 !important; mso-table-rspace:0 !important;}
th[class=fr-journey-arrow-mobile] {display: none !important;}
th[class=fr-journey-arrow-desktop] {display: table-cell !important;}
img[class=fr-journey-arrow-desktop-img] {display: inline !important;}
/* Media Query for mobile */
@media screen and (max-width: 600px) {
*[class=mobile-only]{display:block !important;}
*[class=mobile-block]{display:block !important; margin: 0 auto !important; valign: middle;}
*[class=emailwrapto33pc]{width:33.33333% !important; height:auto !important;}
*[class=mobpadding] {width: 15px !important;}
*[class=stacked] {width: 100%!important; float: left!important;}
*[class=centred] { margin: 0 auto !important; }
*[class=pre-header] {width: 100% !important; text-align: center; display: block;}
*[class=logo] { margin: 0 auto !important; width: 130px !important; height: auto !important;}
p[class=p-footer]{margin-top:0px !important;}
p[class=center-align] {text-align: center !important;}
img[class=joinus-bookend]{display:none !important;}
/* This resizes tables and images to be 100% wide with a proportionate width */
table[class=emailwrapto100pc], img[class=emailwrapto100pc]{width:100% !important; height:auto !important;}
table[class=emailwrapto75pc], img[class=emailwrapto75pc],th[class=emailwrapto75pc]{width:75% !important; height:auto !important;}
table[class=emailwrapto50pc], img[class=emailwrapto50pc],th[class=emailwrapto50pc]{width:50% !important; height:auto !important;}
table[class=emailwrapto320px], img[class=emailwrapto320px],th[class=emailwrapto320px]{width:320px !important; height:auto !important;}
table[class=emailwrapto320px-2], img[class=emailwrapto320px-2],th[class=emailwrapto320px-2]{width:320px !important; height:auto !important; margin-bottom:30px !important;}
table[class=quicklink-margin], img[class=quicklink-margin],th[class=quicklink-margin]{margin-bottom:30px !important;}
img[class=quicklink-padding-25],th[class=quicklink-padding-25]{width:25px !important;}
img[class=quicklink-padding-30],th[class=quicklink-padding-30]{width:30px !important;}
th[class=fr-journey-img]{padding-top:94px !important; width: 100% !important;}
th[class=fr-journey-text]{position:absolute !important; top:0 !important; left: 0 !important; width: 90% !important; padding-left: 5% !important; padding-right: 5% !important;}
th[class=fr-journey]{float:left !important; width:100% !important;}
th[class=fr-journey-text-right] {width: 90% !important; padding-left: 5% !important; padding-right: 5% !important; padding-top: 10px !important;}
th[class=fr-journey-img-right] {width: 100% !important; padding-bottom: 20px !important;}
th[class=fr-journey-arrow] { height: 30px !important;}
th[class=fr-journey-arrow-desktop] {height: 30px !important;}
th[class=copy-height-mobile] {height:auto !important;}
img[class=fr-journey-arrow-desktop-img] {display: none !important;}
img[class=mobileheight]{height:0px;}
/* Hide stuff on mobiles */
table[class=emailnomob],tr[class=emailnomob],th[class=emailnomob],img[class=emailnomob],span[class=emailnomob]{display:none !important;}
th[class=emailcolsplit]{width:100%!important; float:left!important;}
a[class=emailmobbutton]{display:block !important;font-size:16px !important; font-weight:bold !important; padding:6px 4px 8px 4px !important; line-height:18px !important; background:#dddddd !important; border-radius:5px !important; margin:10px auto;width:70%; text-align:center; color:#111 !important; text-decoration:none; text-shadow:#ffffff 1px 0 0 ;}
a[class="button"]{letter-spacing: 0 !important;}
/* This resizes body text for mobiles */
span[class=emailbodytext],a[class=emailbodytext],p[class=emailbodytext]{padding-left:10px !important; padding-right:10px !important;}
th[class=bodycopypadding]{padding-left:20px!important; padding-right:20px!important;}
span[class=emailh2],a[class=emailh2]{}
span[class=emailh2] {}
th[class=mobile-padding-top] {padding-left:18px!important; padding-top:18px!important;}
th[class=subpodimage]{width:100%!important; float:left!important;}
th[class=subpodimage-padding-top]{width:100%!important; float:left!important; padding-top:15px !important;}
th[class=subpodcopy]{width:100% !important; float:left!important;}
*[class=quicklinks]{width: 100% !important; float:left !important; padding: 0% !important;}
tr[class=join-us-table]{height:80px !important;}
th[class=emailwrapto100pc-footer]{width:100% !important; height:auto !important; padding-top:0px !important;}
th[class=emailwrapto100pc]{width:100% !important;}
th[class=subpodimage-reverse]{width:100%!important; float:left!important; position:absolute!important; left: 0px !important; top:30px!important;}
th[class=subpodcopy-reverse]{width:100%!important; float:left!important; padding-top:255px!important;}
*[class=mob-header-img]{width: 80px !important; height: auto !important;}
*[class=mobile-only-padding]{padding-top:20px !important; width:100% !important;}
*[class=mobile-padding]{ padding-left: 15px !important; padding-right: 15px !important;}
*[class=mobile-centred] { text-align: center !important;}
}
</style>
</head>
<body style="padding:0; margin:0;-webkit-text-size-adjust:none;-ms-text-size-adjust:100%; min-width:100%;">
<!-- For email clients that ignore the body tag -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" valign="top" align="center">
<tbody>
<tr>
<th>
<table align="center" cellpadding="0" cellspacing="0" border="0" valign="top" width="92%" style="font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size:16px;">
<tbody>
<!-- ROWS START HERE -->
<!-- PRE-HEADER -->
<!-- row's background colour 2x -->
<tr bgcolor="#fff" style="background-color:#fff;">
<!-- end row background colour -->
<th height="30" style="padding:0px;">
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" valign="top" class="emailwrapto100pc" style="font-size:16px; line-height:22px; color:#555555; font-family: Helvetica Neue, Helvetica, Arial, sans-serif;">
<tr>
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<!-- text - change font-size, color etc 2x (in <th> and in <span>)-->
<th class="pre-header" width="100%" style="font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size:11px; text-align:right; line-height:17px; color:#555555; margin-top:17px; margin-bottom:17px;">
<span class="center-align" style="font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-size:11px; text-align:right; line-height:17px; color:#555555; margin-top:17px; margin-bottom:17px;">
Trouble viewing the email?
<!-- link -->
<a href="[EMV LINK]22[EMV /LINK]" style="color:#555555;" target="_blank">
See the email in full
</a>
</span>
</th>
<!-- end text -->
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
</table>
</th>
</tr>
<!-- END OF PRE-HEADER -->
<!-- LOGO ROW -->
<tr>
<!-- row's background colour 2x -->
<th bgcolor="#ffffff" style="background-color:#ffffff; " align="center" valign="top">
<!-- end row background colour -->
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" valign="top" class="emailwrapto100pc" style="font-size:16px; line-height:22px; color:#555555; font-family: Helvetica Neue, Helvetica, Arial, sans-serif;">
<tbody>
<!-- logo block -->
<tr align="center" valign="top">
<th align="center" valign="top" class="mob-header-img" style="padding:0;">
<!-- Logo link-->
<a href="https://www.comicrelief.com/" target="_blank">
<!-- Logo -->
<img alt="Comic Relief logo" src="https://s3.amazonaws.com/email-assets.comicrelief.com/2017/Logos/CR18-logo.png" style="display: block; border-width: 0px; border-style: solid; margin: 0 auto;" width="80" >
</a>
</th>
</tr>
<!-- end logo block -->
<!-- spacer bottom -->
<tr>
<th height="20" width="100%" align="center" valign="top" style="padding:0;">
<img alt="spacer" border="0" height="20" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer bottom -->
</tbody>
</table>
</th>
</tr>
<!-- END OF LOGO ROW-->
<!-- NAVIGATION ROW-->
<tr >
<!-- row's background colour 2x -->
<th class="emailnomob" bgcolor="#ffffff" style="background-color:#ffffff;" align="center" valign="top">
<!-- end row background colour -->
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" valign="top" class="emailwrapto100pc" style="font-family: Helvetica Neue, Helvetica, Arial, sans-serif;">
<tbody>
<tr align="center" valign="top" width="100%" >
<th>
<table>
<tr align="center" valign="middle" >
<th>
<table width="100%" height="60" >
<!-- spacer top -->
<tr align="center" valign="top">
<th height="15" align="center" valign="top" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer top -->
<!-- nav items -->
<tr>
<!-- item 1 -->
<th align="right" valign="middle" style="padding-right:15px; font-size:14px; line-height:20px; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; border-right: 1px solid #d9d9d9;">
<!-- link -->
<a href="http://www.google.com" style="color:#2C0230; text-decoration:none; font-weight:normal; display: block;" target="_blank">
<!-- text -->
<span style="font-size:16px; line-height:20px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; padding:0; margin:0; ">
Schools
</span>
</a>
</th>
<!-- end item 1 -->
<!-- item 2 -->
<th align="center" valign="middle" style="padding:0px 15px; font-size:14px; line-height:20px; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; border-right: 1px solid #d9d9d9;">
<!-- link -->
<a href="http://www.google.com" style="color:#2C0230; text-decoration:none; font-weight:normal; display: block;" target="_blank">
<!-- text -->
<span style="font-size:16px; line-height:20px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; padding:0; margin:0; ">
Fundraising Tools
</span>
</a>
</th>
<!-- end item 2 -->
<!-- item 3 -->
<th align="center" valign="middle" style="padding:0px 15px; font-size:14px; line-height:20px; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; border-right: 1px solid #d9d9d9;">
<!-- link -->
<a href="http://www.google.com" style="color:#2C0230; text-decoration:none; font-weight:normal; display: block;" target="_blank">
<!-- text -->
<span style="font-size:16px; line-height:20px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; padding:0; margin:0;">Learning Resources
</span>
</a>
</th>
<!-- end item 3 -->
<!-- item 4 -->
<th align="left" valign="middle" style="padding-left:15px; font-size:14px; line-height:20px; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold;">
<!-- link -->
<a href="http://www.google.com" style="color:#2C0230; text-decoration:none; font-weight:normal; display: block;" target="_blank">
<!-- text -->
<span style="font-size:16px; line-height:20px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; padding:0; margin:0;">
Shop
</span>
</a>
</th>
<!-- end item 4 -->
</tr>
<!-- end nav items -->
<!-- spacer bottom -->
<tr align="center" valign="top">
<th height="35" align="center" valign="top" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer bottom -->
</table>
</th>
</tr>
</table>
</th>
</tr>
</tbody>
</table>
</th>
</tr>
<!-- END OF NAVIGATION ROW -->
<!-- FEATURE ROW -->
<tr>
<!-- row's background colour 2x -->
<th bgcolor="#fff" style="background-color:#fff;" align="center" valign="top">
<!-- end row background colour -->
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" valign="top" class="emailwrapto100pc" style="font-family: Helvetica Neue, Helvetica, Arial, sans-serif;">
<tbody>
<!-- image block -->
<tr align="center" valign="top">
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<!-- actual image -->
<th width="100%" align="center" valign="top" class="emailwrapto100pc" style="padding:0;">
<!-- image link -->
<a href="[EMV LINK]26[EMV /LINK]" style="text-decoration: none; padding:0;" target="_blank">
<!-- image - change src (source) and alt text-->
<img alt="Alt text here" border="0" src="https://s3.amazonaws.com/email-assets.comicrelief.com/2017/template/CR18_feature_placeholder.jpg" width="570" class="emailwrapto100pc" style="display:block;">
</a>
</th>
<!-- end actual image -->
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
<!-- end image block-->
<!-- content block -->
<tr>
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<!-- inner container -->
<th>
<table>
<tr>
<th width="25" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<th>
<table>
<!-- spacer above title -->
<tr align="center" valign="top">
<th height="30" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer above title -->
<!-- title block -->
<tr align="center" valign="top">
<!-- text - change font-size, color etc 2x (in <th> and in <span>)-->
<th style="font-size:52px; line-height:55px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0;" align="center" valign="top">
<span style="font-size:52px; line-height:55px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0; font-weight:bold; text-transform: uppercase;">
this is the new email template
</span>
</th>
<!-- end text -->
</tr>
<!-- end title block-->
<!-- spacer between -->
<tr align="center" valign="top">
<th height="30" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer between -->
<!-- copy block -->
<tr align="center" valign="top">
<!-- text - change font-size, color etc 2x (in <th> and in <span>)-->
<th style="line-height:24px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0; font-size:18px; font-weight:none;" align="center" valign="top">
<span style="font-size:18px; line-height:24px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0;">
Comic Relief is all about making lives better, starting with your own, and it's back from 17th to 23rd March for a whole week of epic activity and one exciting national challenge.
<br><br>
Anyone can join in so, as an amazing Red Nose Day fundraiser, we'd love you to get active and raise money in whatever way suits you. To find out more and get a head start, pre-order your free Fundraising Pack.
</span>
</th>
<!-- end text -->
</tr>
<!-- end copy block -->
<!-- spacer between -->
<tr align="center" valign="top">
<th height="45" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer between -->
<!-- button block -->
<tr align="center" valign="top">
<!-- actual button -->
<th align="center" colspan="3" valign="middle">
<table align="center" border="0" cellpadding="0" cellspacing="0" style="text-decoration:none;" valign="middle">
<tbody>
<tr>
<!-- change background colour in <th> and font colour in both <th> and <a> -->
<th align="center" bgcolor="#E52630" style="padding:20px 40px; text-decoration:none; font-size:18px; line-height:20px; color:#fff; background-color: #E52630; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; display: block; border-radius:60px" valign="middle">
<!-- button link and text -->
<a class="button" href="[EMV LINK]27[EMV /LINK]" style="color:#ffffff; text-decoration:none; font-weight:bold; display:block; text-transform: uppercase; letter-spacing: 0.1em;" target="_blank">
PRE-ORDER YOUR PACK
</a>
</th>
</tr>
</tbody>
</table>
</th>
<!-- end actual button -->
</tr>
<!-- end button block -->
</table>
</th>
<th width="25" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
</table>
</th>
<!-- end inner container -->
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
<!-- end content block -->
<!-- spacer bottom -->
<tr align="center" valign="top">
<th height="70" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer bottom -->
</tbody>
</table>
</th>
</tr>
<!-- END OF FEATURE ROW -->
<!-- FEATURE ROW WITH LIST-->
<tr>
<!-- row's background colour 2x -->
<th bgcolor="#fff" style="background-color:#fff;" align="center" valign="top">
<!-- end row background colour -->
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" valign="top" class="emailwrapto100pc" style="font-family: Helvetica Neue, Helvetica, Arial, sans-serif;">
<tbody>
<!-- image block -->
<tr align="center" valign="top">
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<!-- actual image -->
<th width="100%" align="center" valign="top" class="emailwrapto100pc" style="padding:0;">
<!-- image link -->
<a href="[EMV LINK]26[EMV /LINK]" style="text-decoration: none; padding:0;" target="_blank">
<!-- image - change src (source) and alt text-->
<img alt="Alt text here" border="0" src="https://s3.amazonaws.com/email-assets.comicrelief.com/2017/template/CR18_feature_placeholder.jpg" width="570" class="emailwrapto100pc" style="display:block;">
</a>
</th>
<!-- end actual image -->
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
<!-- end image block-->
<!-- content block -->
<tr>
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<!-- inner container -->
<th>
<table>
<tr>
<th width="25" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<th>
<table>
<!-- spacer above title -->
<tr align="center" valign="top">
<th height="30" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer above title -->
<!-- title block -->
<tr align="center" valign="top">
<!-- text - change font-size, color etc 2x (in <th> and in <span>)-->
<th style="font-size:52px; line-height:55px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0;" align="center" valign="top">
<span style="font-size:52px; line-height:55px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0; font-weight:bold; text-transform: uppercase;">
Feature row with lists
</span>
</th>
<!-- end text -->
</tr>
<!-- end title block-->
<!-- spacer between -->
<tr align="center" valign="top">
<th height="30" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer between -->
<!-- copy block -->
<tr align="left" valign="top">
<!-- text - change font-size, color etc 2x (in <th> and in <span>)-->
<th style="line-height:24px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0; font-size:18px; font-weight:none;" align="left" valign="top">
<span style="font-size:18px; line-height:24px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0;">
Comic Relief is all about making lives better, starting with your own, and it's back from 17th to 23rd March for a whole week of epic activity and one exciting national challenge.<br><br>
Here's an example of an unordered list:
<ul>
<li>list item</li>
<li>copy list item</li>
<li>as many times as you need</li>
</ul>
I'm an ordered list:
<ol>
<li>list item</li>
<li>copy list item</li>
<li>as many times as you need</li>
</ol>
Continue text here.
</span>
</th>
<!-- end text -->
</tr>
<!-- end copy block -->
<!-- spacer between -->
<tr align="center" valign="top">
<th height="45" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer between -->
<!-- button block -->
<tr align="center" valign="top">
<!-- actual button -->
<th align="center" colspan="3" valign="middle">
<table align="center" border="0" cellpadding="0" cellspacing="0" style="text-decoration:none;" valign="middle">
<tbody>
<tr>
<!-- change background colour in <th> and font colour in both <th> and <a> -->
<th align="center" bgcolor="#E52630" style="padding:20px 40px; text-decoration:none; font-size:18px; line-height:20px; color:#fff; background-color: #E52630; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; display: block; border-radius:60px" valign="middle">
<!-- button link and text -->
<a class="button" href="[EMV LINK]27[EMV /LINK]" style="color:#ffffff; text-decoration:none; font-weight:bold; display:block; text-transform: uppercase; letter-spacing: 0.1em;" target="_blank">
PRE-ORDER YOUR PACK
</a>
</th>
</tr>
</tbody>
</table>
</th>
<!-- end actual button -->
</tr>
<!-- end button block -->
</table>
</th>
<th width="25" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
</table>
</th>
<!-- end inner container -->
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
<!-- end content block -->
<!-- spacer bottom -->
<tr align="center" valign="top">
<th height="70" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer bottom -->
</tbody>
</table>
</th>
</tr>
<!-- END OF FEATURE ROW WITH LISTS-->
<!-- FEATURE ROW NO TITLE -->
<tr>
<!-- row's background colour 2x -->
<th bgcolor="#340f78" style="background-color:#340f78;" align="center" valign="top">
<!-- end row background colour -->
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" valign="top" class="emailwrapto100pc" style="font-family: Helvetica Neue, Helvetica, Arial, sans-serif;">
<tbody>
<!-- spacer top -->
<tr align="center" valign="top">
<th height="70" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer top -->
<!-- image block -->
<tr align="center" valign="top">
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<!-- actual image -->
<th width="100%" align="center" valign="top" class="emailwrapto100pc" style="padding:0;">
<!-- image link -->
<a href="[EMV LINK]26[EMV /LINK]" style="text-decoration: none; padding:0;" target="_blank">
<!-- image - change src (source) and alt text-->
<img alt="Alt text here" border="0" src="https://s3.amazonaws.com/email-assets.comicrelief.com/2017/template/CR18_feature_placeholder.jpg" width="570" class="emailwrapto100pc" style="display:block;">
</a>
</th>
<!-- end actual image -->
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
<!-- end image block-->
<!-- content block -->
<tr>
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<!-- inner container -->
<th>
<table>
<tr>
<th width="25" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<th>
<table>
<!-- spacer above copy -->
<tr align="center" valign="top">
<th height="30" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer above copy -->
<!-- copy block -->
<tr align="center" valign="top">
<!-- text - change font-size, color etc 2x (in <th> and in <span>)-->
<th style="line-height:24px; color:#fff; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0; font-size:18px; font-weight:none;" align="center" valign="top">
<span style="font-size:18px; line-height:24px; color:#fff; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0;">
Feature row - no title<br><br>
Comic Relief is all about making lives better, starting with your own, and it's back from 17th to 23rd March for a whole week of epic activity and one exciting national challenge.
<br><br>
Anyone can join in so, as an amazing Red Nose Day fundraiser, we'd love you to get active and raise money in whatever way suits you. To find out more and get a head start, pre-order your free Fundraising Pack.
</span>
</th>
<!-- end text -->
</tr>
<!-- end copy block -->
<!-- spacer between -->
<tr align="center" valign="top">
<th height="45" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer between -->
<!-- button block -->
<tr align="center" valign="top">
<!-- actual button -->
<th align="center" colspan="3" valign="middle">
<table align="center" border="0" cellpadding="0" cellspacing="0" style="text-decoration:none;" valign="middle">
<tbody>
<tr>
<!-- change background colour in <th> and font colour in both <th> and <a> -->
<th align="center" style="padding:20px 40px; text-decoration:none; font-size:18px; line-height:20px; color:#ffffff; border: 1px solid #fff; background-color: transparent; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; display: block; border-radius:60px" valign="middle">
<!-- button link and text -->
<a class="button" href="[EMV LINK]27[EMV /LINK]" style="color:#ffffff; text-decoration:none; font-weight:bold; display:block; text-transform: uppercase; letter-spacing: 0.1em;" target="_blank">
PRE-ORDER YOUR PACK
</a>
</th>
</tr>
</tbody>
</table>
</th>
<!-- end actual button -->
</tr>
<!-- end button block -->
</table>
</th>
<th width="25" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
</table>
</th>
<!-- end inner container -->
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
<!-- end content block -->
<!-- spacer bottom -->
<tr align="center" valign="top">
<th height="70" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer bottom -->
</tbody>
</table>
</th>
</tr>
<!-- END OF FEATURE ROW NO TITLE -->
<!-- FEATURE ROW SMALL TITLE -->
<tr>
<!-- row's background colour 2x -->
<th bgcolor="#E52630" style="background-color:#E52630;" align="center" valign="top">
<!-- end row background colour -->
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" valign="top" class="emailwrapto100pc" style="font-family: Helvetica Neue, Helvetica, Arial, sans-serif;">
<tbody>
<!-- spacer top -->
<tr align="center" valign="top">
<th height="70" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer top -->
<!-- image block -->
<tr align="center" valign="top">
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<!-- actual image -->
<th width="100%" align="center" valign="top" class="emailwrapto100pc" style="padding:0;">
<!-- image link -->
<a href="[EMV LINK]26[EMV /LINK]" style="text-decoration: none; padding:0;" target="_blank">
<!-- image - change src (source) and alt text-->
<img alt="Alt tetxt here" border="0" src="https://s3.amazonaws.com/email-assets.comicrelief.com/2017/template/CR18_feature_placeholder.jpg" width="570" class="emailwrapto100pc" style="display:block;">
</a>
</th>
<!-- end actual image -->
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
<!-- end image block-->
<!-- content block -->
<tr>
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<!-- inner container -->
<th>
<table>
<tr>
<th width="25" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<th>
<table>
<!-- spacer above title -->
<tr align="center" valign="top">
<th height="30" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer above title -->
<!-- title block -->
<tr align="center" valign="top">
<!-- text - change font-size, color etc 2x (in <th> and in <span>)-->
<th style="font-size:36px; line-height:40px; color:#fff; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0;" align="center" valign="top">
<span style="font-size:36px; line-height:40px; color:#fff; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0; font-weight:bold; text-transform: uppercase;">
Feature row,<br>
small title
</span>
</th>
<!-- end text -->
</tr>
<!-- end title block-->
<!-- spacer between -->
<tr align="center" valign="top">
<th height="30" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer between -->
<!-- copy block -->
<tr align="center" valign="top">
<!-- text - change font-size, color etc 2x (in <th> and in <span>)-->
<th style="line-height:24px; color:#fff; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0; font-size:18px; font-weight:none;" align="center" valign="top">
<span style="font-size:18px; line-height:24px; color:#fff; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0;">
Comic Relief is all about making lives better, starting with your own, and it's back from 17th to 23rd March for a whole week of epic activity and one exciting national challenge.
<br><br>
Anyone can join in so, as an amazing Red Nose Day fundraiser, we'd love you to get active and raise money in whatever way suits you. To find out more and get a head start, pre-order your free Fundraising Pack.
</span>
</th>
<!-- end text -->
</tr>
<!-- end copy block -->
<!-- spacer between -->
<tr align="center" valign="top">
<th height="45" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer between -->
<!-- button block -->
<tr align="center" valign="top">
<!-- actual button -->
<th align="center" colspan="3" valign="middle">
<table align="center" border="0" cellpadding="0" cellspacing="0" style="text-decoration:none;" valign="middle">
<tbody>
<tr>
<!-- change background colour in <th> and font colour in both <th> and <a> -->
<th align="center" style="padding:20px 40px; text-decoration:none; font-size:18px; line-height:20px; color:#fff; background-color: transparent; border:1px solid #fff; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; display: block; border-radius:60px" valign="middle">
<!-- button link and text -->
<a class="button" href="[EMV LINK]27[EMV /LINK]" style="color:#ffffff; text-decoration:none; font-weight:bold; display:block; text-transform: uppercase; letter-spacing: 0.1em;" target="_blank">
PRE-ORDER YOUR PACK
</a>
</th>
</tr>
</tbody>
</table>
</th>
<!-- end actual button -->
</tr>
<!-- end button block -->
</table>
</th>
<th width="25" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
</table>
</th>
<!-- end inner container -->
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
<!-- end content block -->
<!-- spacer bottom -->
<tr align="center" valign="top">
<th height="70" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer bottom -->
</tbody>
</table>
</th>
</tr>
<!-- END OF FEATURE ROW SMALL TITLE-->
<!-- SMALL ROW IMAGE LEFT -->
<tr>
<!-- row's background colour 2x -->
<th align="center" valign="top" height="100%" bgcolor="#fff;" style="background-color:#fff;">
<!-- end row background colour -->
<table width="600" align="center" border="0" cellpadding="0" cellspacing="0" valign="top" class="emailwrapto100pc">
<tbody>
<!-- spacer top -->
<tr align="center" valign="top">
<th class="pre-title-padding" height="35" align="center" valign="top" colspan="3" style="padding:0;"> <img alt="Spacer" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1"> </th>
</tr>
<!-- end spacer top -->
<!-- container -->
<tr align="center" valign="top">
<th align="center" valign="top">
<table width="600" align="left" border="0" cellspacing="0" cellpadding="0" class="emailwrapto100pc">
<tbody>
<tr>
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<!-- inner container -->
<th>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="emailwrapto100pc">
<tbody>
<!-- title block -->
<tr align="center" valign="top">
<!-- text - change font-size, color etc 2x (in <th> and in <span>)-->
<th colspan="3" align="center" valign="top" style="font-size:36px; line-height:40px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight:bold;" class="mobile-padding">
<span style="font-size:36px; line-height:40px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight:bold; padding:0; margin:0; text-transform:uppercase;">
Small Row image left
</span>
</th>
<!-- end text -->
</tr>
<!-- end title block -->
<!-- spacer between -->
<tr align="center" valign="top">
<th class="pre-title-padding" height="45" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="Spacer" border="0" height="45" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer between -->
<!-- image and copy container -->
<tr>
<!-- image block -->
<!-- change image block's background colour 2x -->
<th bgcolor="#ffffff" style="background-color:#ffffff;" width="275" class="subpodimage" align="left" valign="top">
<!-- end image block background colour -->
<table width="275" height="275" border="0" cellpadding="0" cellspacing="0" class="emailwrapto100pc">
<tbody>
<tr>
<th width="275">
<!-- image link -->
<a href="http://www.comicrelief.com" target="_blank" style="padding:0;">
<!-- image change src (source) and alt text-->
<img alt="Alt text here" border="0" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/square_245x245.jpg" style="display: block;" width="275" class="emailwrapto100pc">
</a>
</th>
</tr>
</tbody>
</table>
</th>
<!-- end of image block -->
<!-- content block -->
<!-- change conent block's background colour 2x -->
<th bgcolor="#ffffff" style="background-color:#ffffff;" class="subpodcopy" align="right" valign="top" width="295">
<!-- end content block background colour -->
<!-- change background colour here 2x in <table> - also change font color, font size etc -->
<table bgcolor="#ffffff" border="0" cellspacing="0" cellpadding="0" style="width:295px;font-size:18px; line-height:24px; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; background-color:#ffffff;" class="emailwrapto100pc" align="right">
<!-- content inner container -->
<tr align="right" valign="top">
<th class="emailnomob" width="25" align="center" valign="top" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15" />
</th>
<th>
<table class="emailwrapto100pc" border="0" cellspacing="0" cellpadding="0" align="left" valign="top">
<!-- copy -->
<tr align="left" valign="top">
<!-- text - change font-size, color etc 2x (in <th> and in <span>)-->
<th style="text-align:left; font-size:18px; line-height:24px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0; display:block; text-align:left; max-height:160px; overflow-y:hidden;" width="270px" class="mobile-only-padding">
<span width="270" style="font-size:16px; line-height:20px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding:0; margin:0; display:block; text-align:left;" class="centeredcopymobile">
Fusce convallis metus id felis luctus adipiscing. Maecenas vestibulum mollis diam. Nunc nonummy metus. Quisque id mi
</span>
</th>
<!-- end text -->
</tr>
<!-- end copy -->
<!-- spacer between copy and button -->
<tr align="left" valign="top">
<th height="40" align="right" valign="top" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer between copy and button -->
<!-- button -->
<tr align="left" valign="top">
<th>
<table align="left" border="0" cellpadding="0" cellspacing="0" style="text-decoration:none;" valign="middle" width="270">
<tr align="center" valign="top" >
<!-- change background colour in <th> and font colour in both <th> and <a> -->
<th align="center" bgcolor="#E52630" style="padding: 15px 40px; text-decoration:none; font-size:15px; line-height:20px; color:#ffffff; background-color: #E52630; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; display:block; border-radius:60px" valign="middle">
<!-- button link and text -->
<a class="button" href="http://www.google.com" style="color:#ffffff; text-decoration:none; font-weight:bold; display:block; text-transform: uppercase; letter-spacing: 0.05em;" target="_blank">
Click for email fun!
</a>
</th>
</tr>
</table>
</th>
</tr>
<!-- end button -->
</table>
</th>
</tr>
<!-- end content inner container -->
</table>
</th>
<!-- end content block -->
</tr>
<!-- end image and copy container -->
</tbody>
</table>
</th>
<!-- end inner container -->
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
</tr>
</tbody>
</table>
</th>
</tr>
<!-- end container -->
<!-- spacer bottom -->
<tr align="center" valign="top">
<th height="35" align="center" valign="top" colspan="3" class="pre-social-padding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer bottom -->
</tbody>
</table>
</th>
</tr>
<!-- END OF SMALL ROW IMAGE LEFT-->
<!-- SMALL ROW IMAGE RIGHT-->
<tr>
<!-- row's background colour 2x -->
<th align="center" valign="top" height="100%" bgcolor="#fff;" style="background-color:#fff;">
<!-- end row background colour -->
<table dir="rtl" width="600" align="center" border="0" cellpadding="0" cellspacing="0" valign="top" class="emailwrapto100pc">
<tbody>
<!-- spacer top -->
<tr align="center" valign="top">
<th class="pre-title-padding" height="35" align="center" valign="top" colspan="3" style="padding:0;"> <img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1"> </th>
</tr>
<!-- end spacer top -->
<!-- container -->
<tr align="center" valign="top">
<th align="center" valign="top">
<table width="600" align="left" border="0" cellspacing="0" cellpadding="0" class="emailwrapto100pc">
<tbody>
<tr>
<th width="15" align="center" valign="top" class="mobpadding" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15">
</th>
<!-- inner container -->
<th>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="emailwrapto100pc">
<tbody>
<!-- title block -->
<tr align="center" valign="top">
<!-- text - change font-size, color etc 2x (in <th> and in <span>)-->
<th colspan="3" align="center" valign="top" style="font-size:36px; line-height:40px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight:bold;" class="mobile-padding">
<span style="font-size:36px; line-height:40px; color:#2C0230; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; font-weight:bold; padding:0; margin:0; text-transform:uppercase; direction:ltr;">
Small Row image right
</span>
</th>
<!-- end text -->
</tr>
<!-- end title block -->
<!-- spacer between -->
<tr align="center" valign="top">
<th class="pre-title-padding" height="45" align="center" valign="top" colspan="3" style="padding:0;">
<img alt="" border="0" height="45" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="1">
</th>
</tr>
<!-- end spacer between -->
<!-- image and copy container -->
<tr>
<!-- image block -->
<!-- change image block's background colour 2x -->
<th bgcolor="#ffffff" style="background-color:#ffffff;" width="275" class="subpodimage" align="left" valign="top">
<!-- end image block background colour -->
<table width="275" height="275" border="0" cellpadding="0" cellspacing="0" class="emailwrapto100pc">
<tbody>
<tr>
<th width="275">
<!-- image link -->
<a href="http://www.comicrelief.com" target="_blank" style="padding:0;">
<!-- image change src (source) and alt text-->
<img alt="Alt text here" border="0" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/square_245x245.jpg" style="display: block;" width="275" class="emailwrapto100pc">
</a>
</th>
</tr>
</tbody>
</table>
</th>
<!-- end of image block -->
<!-- content block -->
<!-- change conent block's background colour 2x -->
<th bgcolor="#ffffff" style="background-color:#ffffff;" class="subpodcopy" align="right" valign="top" width="295">
<!-- end content block background colour -->
<!-- change background colour here 2x in <table> - also change font color, font size etc -->
<table bgcolor="#ffffff" border="0" cellspacing="0" cellpadding="0" style="width:295px;font-size:18px; line-height:24px; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; background-color:#ffffff;" class="emailwrapto100pc" align="right">
<!-- content inner container -->
<tr align="right" valign="top">
<th class="emailnomob" width="25" align="center" valign="top" style="padding:0;">
<img alt="" border="0" height="1" src="http://email-assets.comicrelief.com.s3.amazonaws.com/2017/template/spacer.gif" style="display: block;" width="15" />
</th>
<th>
<table class="emailwrapto100pc" border="0" cellspacing="0" cellpadding="0" align="left" valign="top">