-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstarter-components.html
More file actions
636 lines (590 loc) · 34.6 KB
/
Copy pathstarter-components.html
File metadata and controls
636 lines (590 loc) · 34.6 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<meta name="color-scheme" content="light dark">
<title>Starter email components</title>
<style>
/* Dark mode settings */
:root {
color-scheme: light dark;
}
/* Reset */
html, body {
margin: 0 auto !important;
padding: 0 !important;
height: 100% !important;
width: 100% !important;
}
.main {
box-sizing: border-box;
}
/* Content */
body {
background: #efefef;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 18px;
line-height: 24px;
color: #444444;
text-align: left;
font-weight: 300;
}
a {
color: #0b72c7;
font-weight: 400;
text-decoration: underline;
}
.preview {
display: none;
}
.wrapper {
background: #efefef;
}
.main {
max-width: 600px;
margin: 0 auto;
}
.content {
margin: 0;
text-align: left;
}
.col {
display: table-cell;
}
.col-3 {
width: 25%;
}
.col-4 {
width: 33.3%;
}
.col-6 {
width: 50%;
}
.col-8 {
width: 66.6%;
}
.col-9 {
width: 75%;
}
h1 {
margin: 0;
margin-bottom: 10px;
font-size: 36px;
line-height: 40px;
color: #444444;
font-weight: 600;
}
h2 {
margin: 0;
margin-bottom: 20px;
font-size: 28px;
line-height: 30px;
color: #444444;
font-weight: 600;
}
h3 {
margin: 0;
margin-bottom: 10px;
font-size: 20px;
line-height: 22px;
color: #444444;
font-weight: 600;
}
p {
margin: 0;
}
.text-sm {
font-size: 16px;
line-height: 22px;
}
.image {
display: block;
border-radius: 10px;
width: 100%;
height: auto;
}
a.btn {
display: inline-block;
border-radius: 50px;
background: #0b72c7;
padding: 12px 25px;
font-weight: 600;
line-height: 1;
text-decoration: none;
text-align: center;
color: #ffffff;
}
.spacer {
width: 100%;
height: 20px;
}
.spacer p {
float: left;
margin-bottom: 20px;
width: 100%;
line-height: 0;
}
.spacer-lg {
height: 30px;
}
.spacer-lg p {
margin-bottom: 30px;
}
.spacer-xl {
height: 50px;
}
.spacer-xl p {
margin-bottom: 50px;
}
.box {
border-radius: 10px;
background-color: #ffffff;
overflow: hidden;
}
.container {
display: table;
width: 100%;
}
.header .logo {
display: inline-block;
float: left;
width: 75px;
height: auto;
}
.header .tagline {
vertical-align: middle;
text-align: right;
font-size: 16px;
}
.footer {
max-width: 100%;
margin: 0 auto;
padding-bottom: 20px;
font-size: 14px;
line-height: 18px;
text-align: center;
}
.footer .unsubscribe {
color: #444444;
text-decoration: none;
}
/* Responsive adjustments */
@media screen and (max-width: 480px) {
.column {
display: block !important;
width: 100% !important;
box-sizing: border-box;
padding: 0 14px 14px 14px !important;
}
.column:last-child {
padding-bottom: 0 !important;
}
.column.alt {
padding-top: 14px !important;
padding-bottom: 0 !important;
}
.column.box {
padding-top: 14px !important;
padding-bottom: 14px !important;
}
.column.alt:last-child {
padding-bottom: 14px !important;
}
.column img.fill {
width: 100% !important;
height: auto !important;
}
.mobile-left {
text-align: left !important;
}
.mobile-center {
text-align: center !important;
}
.icons .column {
width: 50% !important;
float: left;
}
.icons .column:nth-child(3) {
padding-bottom: 0 !important;
}
.icons .column.alt:nth-child(3) {
padding-bottom: 14px !important;
}
}
/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
body, .wrapper {
background-color: #222 !important;
}
h1, h2, h3, p, ul li, code {
color: #f1f1f1 !important;
}
.column.alt {
background-color: #1b1b1b !important;
}
a.btn {
background: #a6a6a6 !important;
color: #404040 !important;
}
}
</style>
</head>
<body>
<div class="preview block-preview"> </div>
<div role="article" lang="en" dir="ltr" class="wrapper">
<!-- Container -->
<div class="main">
<!-- Header -->
<div class="content">
<div class="spacer spacer-xl"><p> </p></div>
<div class="container header block-region block-remove" data-group="header">
<div class="column col col-4">
<a href="#"><img height="auto" src="logo.png" width="75" alt="" class="logo block-edit" data-block="header-logo"></a>
</div>
<div class="column col col-8 tagline">
<p class="block-edit block-maxchar-50 block-remove" data-block="header-tagline">Welcome to Our Organization™</h1>
</div>
</div>
<!-- Content -->
<div class="spacer spacer-lg"><p> </p></div>
<!-- Standard content section -->
<div class="column block-section" data-group="content-standard" data-title="Standard content">
<p class="block-edit block-remove" data-block="content-standard-text">Running your business can get complicated but it doesn't have to! It requires focusing on basic principles and the core of what makes you and your product or service unique. <a href="#">We'll help you with that focus.</a></p>
<!-- Titles -->
<h1 class="block-component block-edit" data-block="title-h1-text" data-title="Title - H1">A better way to run your business</h1>
<h2 class="block-component block-edit" data-block="title-h2-text" data-title="Title - H2">Essential products we recommend</h2>
<h3 class="block-component block-edit" data-block="title-h3-text" data-title="Title - H3">Help docs</h3>
<!-- Fluid image -->
<img src="photo-new.jpg" width="600" height="auto" alt="" class="image block-component block-edit" data-block="fluid-image-image" data-title="Fluid image">
<!-- Spacer -->
<div class="spacer block-component" data-group="component-spacer" data-title="Spacer"><p> </p></div>
<!-- Text -->
<p class="block-component" data-block="component-text-text" data-title="Text">Running your business can get complicated but it doesn't have to! It requires focusing on basic principles and the core of what makes you and your product or service unique. We'll help you with that focus.</p>
<!-- Button -->
<a href="#" class="btn block-component block-edit" data-block="component-button" data-title="Button" target="_blank">Get started</a>
</div>
<!-- Spacer section -->
<div class="spacer spacer-xl block-section" data-group="section-spacer" data-title="Spacer"><p> </p></div>
<div class="spacer spacer-lg block-section" data-group="section-spacer"><p> </p></div>
<!-- Intro/hero section -->
<div class="column block-section" data-group="intro-hero" data-title="Intro/hero">
<h1 class="block-edit block-remove" data-block="intro-hero-title">A better way to run your business</h1>
<img src="photo-new.jpg" width="600" height="auto" alt="" class="image block-edit block-remove" data-block="intro-hero-image">
<div class="spacer block-edit block-remove" data-block="intro-hero-spacer-1"><p> </p></div>
<p class="block-edit block-remove" data-block="intro-hero-text">Running your business can get complicated but it doesn't have to! It requires focusing on basic principles and the core of what makes you and your product or service unique. We'll help you with that focus.</p>
<div class="spacer block-edit block-remove" data-block="intro-hero-spacer-2"><p> </p></div>
<a href="#" class="btn block-edit block-remove" data-block="intro-hero-cta" target="_blank">Get started</a>
</div>
<div class="column block-section" data-group="intro-hero" style="text-align: center;">
<img src="photo-new.jpg" width="600" height="auto" alt="" class="image block-edit block-remove" data-block="intro-hero-image">
<div class="spacer block-edit block-remove" data-block="intro-hero-spacer-1"><p> </p></div>
<h1 class="block-edit block-remove" data-block="intro-hero-title">A better way to run your business</h1>
<p class="block-edit block-remove" data-block="intro-hero-text">Running your business can get complicated but it doesn't have to! It requires focusing on basic principles and the core of what makes you and your product or service unique. We'll help you with that focus.</p>
<div class="spacer block-edit block-remove" data-block="intro-hero-spacer-2"><p> </p></div>
<p><a href="#" class="btn block-edit block-remove" data-block="intro-hero-cta" target="_blank">Get started</a></p>
</div>
<!-- Callout section -->
<div class="column box block-section block-bgcolor" data-group="callout" data-title="Callout" style="padding: 30px; text-align: center;">
<h2 class="block-edit block-remove" data-group="callout-titles" data-block="callout-title">Give us a try</h2>
<h2 class="block-edit block-remove" data-group="callout-titles" data-block="callout-title" style="color: #0b72c7;">Give us a try</h2>
<p class="block-edit block-remove" data-block="callout-text">With your account is a 30-day trial to use all the features that our tool set has to offer. Enough time to start seeing the effort you put in for your business starting to pay off!</p>
<div class="spacer"><p> </p></div>
<a href="#" class="btn block-edit block-remove" data-block="callout-cta" target="_blank">Continue using for free</a>
</div>
<!-- Individual listing section -->
<div class="container column alt box block-section" data-group="individual-listing" data-title="Individual listing">
<div class="column col col-4" style="text-align: center; vertical-align: middle;">
<a href="#"><img height="auto" src="product-app.jpg" width="190" alt="" class="fill block-edit" data-block="individual-listing-image" style="display: block; width: 190px; height: auto;"></a>
</div>
<div class="column col col-8" style="padding-top: 10px; padding-right: 30px; padding-bottom: 10px; padding-left: 20px; vertical-align: middle;">
<h3 class="block-edit block-remove" data-block="individual-listing-title">New tool available</h3>
<p class="text-sm block-edit" data-block="individual-listing-text">We've added this feature based on user feedback and research. We also eat our own dog food and have been using it with our internal team the last few months as we've fine tuned it!</p>
</div>
</div>
<!-- Two-column section -->
<div class="container block-section" data-group="two-column" data-title="Two-column">
<div class="column col col-6" style="padding-right: 7px;">
<a href="#"><img height="auto" src="product-app-md.jpg" width="290" alt="" class="fill block-edit block-remove" data-block="two-column-image-1" style="display: block; margin-bottom: 10px; border-radius: 5px; width: 290px; height: auto;"></a>
<h3 class="block-edit block-remove" data-block="two-column-title-1">New tool available</h3>
<p class="text-sm block-edit" data-block="two-column-text-1" style="margin-bottom: 10px;">We've added this feature based on user feedback and research. We also eat our own dog food and have been using it with our internal team the last few months as we've fine tuned it!</p>
<a href="#" class="btn block-edit block-remove" data-block="two-column-cta-1" target="_blank">More info</a>
</div>
<div class="column col col-6" style="padding-left: 7px;">
<a href="#"><img height="auto" src="product-watch-app-md.jpg" width="290" alt="" class="fill block-edit block-remove" data-block="two-column-image-2" style="display: block; margin-bottom: 10px; border-radius: 5px; width: 290px; height: auto;"></a>
<h3 class="block-edit block-remove" data-block="two-column-title-2">Works across devices</h3>
<p class="text-sm block-edit" data-block="two-column-text-2" style="margin-bottom: 10px;">Either on your desktop, mobile phone, watch, car infotainment system, portable kitchen display, home TV, or fridge monitor, integrated and ready to work for you.</p>
<a href="#" class="btn block-edit block-remove" data-block="two-column-cta-2" target="_blank">More info</a>
</div>
</div>
<!-- Three-column section -->
<div class="container block-section" data-group="three-column" data-title="Three-column">
<div class="column col col-4" style="padding-right: 7px;">
<a href="#"><img height="auto" src="product-app.jpg" width="190" alt="" class="fill block-edit block-remove" data-block="three-column-image-1" style="display: block; margin-bottom: 10px; border-radius: 5px; width: 190px; height: auto;"></a>
<h3 class="block-edit block-remove" data-block="three-column-title-1">Tool available</h3>
<p class="text-sm block-edit" data-block="three-column-text-1" style="margin-bottom: 10px;">We've added this feature based on user feedback and research. We also eat our own dog food and have used it with our internal team the last few months as we've fine tuned it!</p>
<a href="#" class="btn block-edit block-remove" data-block="three-column-cta-1" target="_blank">More info</a>
</div>
<div class="column col col-4" style="padding-right: 7px; padding-left: 7px;">
<a href="#"><img height="auto" src="product-watch-app.jpg" width="190" alt="" class="fill block-edit block-remove" data-block="three-column-image-2" style="display: block; margin-bottom: 10px; border-radius: 5px; width: 190px; height: auto;"></a>
<h3 class="block-edit block-remove" data-block="three-column-title-2">Across devices</h3>
<p class="text-sm block-edit" data-block="three-column-text-2" style="margin-bottom: 10px;">Either on your desktop, mobile phone, watch, car infotainment system, portable kitchen display, home TV, or fridge monitor, integrated and ready to work for you.</p>
<a href="#" class="btn block-edit block-remove" data-block="three-column-cta-2" target="_blank">More info</a>
</div>
<div class="column col col-4" style="padding-left: 7px;">
<a href="#"><img height="auto" src="product-tablet-app.jpg" width="190" alt="" class="fill block-edit block-remove" data-block="three-column-image-3" style="display: block; margin-bottom: 10px; border-radius: 5px; width: 190px; height: auto;"></a>
<h3 class="block-edit block-remove" data-block="three-column-title-3">Customize it</h3>
<p class="text-sm block-edit" data-block="three-column-text-3" style="margin-bottom: 10px;">Our modular system allows for fully customizable options that work around your business needs, your individual preferences, as well as your team's culture and their own habits.</p>
<a href="#" class="btn block-edit block-remove" data-block="three-column-cta-3" target="_blank">More info</a>
</div>
</div>
<!-- Information listing section -->
<div class="column alt box block-section" data-group="information-listing" data-title="Information listing" style="padding-top: 10px; padding-bottom: 10px; text-align: left;">
<div class="block-region block-repeat" style="display: table; width: 100%;">
<div class="column col col-3" style="text-align: center; vertical-align: middle;">
<a href="#"><img height="auto" src="icon-forums.png" width="80" alt="" class="fill block-edit" data-block="information-listing-image"style="display: inline-block; width: 80px; height: auto;"></a>
</div>
<div class="column col col-9" style="padding-top: 10px; padding-right: 30px; padding-bottom: 10px; vertical-align: middle;">
<h3 class="block-edit block-remove" data-block="information-listing-title">Help docs</h3>
<p class="text-sm block-edit block-remove" data-block="information-listing-text">Start here to get an overview of the options you have on your dashboard and learn how everything works.</p>
</div>
</div>
</div>
<!-- Text information listing section -->
<div class="column alt box block-section" data-group="text-information-listing" data-title="Text information listing" style="padding-top: 10px; padding-bottom: 10px; text-align: left;">
<div class="block-region block-repeat" style="display: table; margin-bottom: 2px; width: 100%;">
<div class="column col col-3" style="padding-right: 10px; text-align: center; vertical-align: middle;">
<h3 class="mobile-left block-edit" data-block="text-information-listing-title" style="margin: 0; font-size: 14px; line-height: 22px; text-align: right;">10:00am-10:45am</h3>
</div>
<div class="column col col-9" style="border-left: #444444 2px solid; padding-right: 30px; padding-left: 10px; vertical-align: middle;">
<p class="text-sm block-edit block-remove" data-block="text-information-listing-text">Introduction</p>
</div>
</div>
</div>
<!-- Calendar listing section -->
<div class="column alt box block-section" data-group="calendar-listing" data-title="Calendar listing" style="padding-top: 10px; padding-bottom: 10px; text-align: left;">
<div class="block-region block-repeat" style="display: table; margin-bottom: 2px; width: 100%;">
<div class="column col col-3" style="padding-left: 10px; text-align: center; vertical-align: middle;">
<table role="presentation" width="80" cellspacing="0" cellpadding="0" style="margin: 0 auto; border-radius: 5px; overflow: hidden;">
<tbody><tr>
<td style="background-color: #df1e1e;"><p class="block-edit" data-block="calendar-listing-month" style="font-size: 10px; line-height: 22px; color: #ffffff; text-align: center; font-weight: 600; text-transform: uppercase;">October</p></td>
</tr>
<tr>
<td style="background-color: #f0f0f0;"><p class="block-edit" data-block="calendar-listing-day" style="font-size: 24px; line-height: 34px; color: #444444; text-align: center; font-weight: 600;">13</p></td>
</tr></tbody>
</table>
</div>
<div class="column col col-6" style="padding-right: 30px; padding-left: 10px; vertical-align: middle;">
<h3 class="mobile-center block-edit block-remove" data-block="calendar-listing-title" style="margin: 0; font-size: 16px; line-height: 22px;">Productivity software and apps</h3>
<p class="text-sm mobile-center block-edit block-remove" data-block="calendar-listing-text">Friday 10am-6pm</p>
</div>
<div class="column col col-3 mobile-center" style="padding-right: 30px; padding-left: 10px; vertical-align: middle;">
<span><a href="#" class="block-edit" data-block="calendar-listing-cta" style="display: inline-block; border-radius: 50px; background: #0b72c7; padding: 8px 21px; font-family: Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 600; line-height: 1; text-decoration: none; text-align: center; color: #ffffff;" target="_blank">Register</a></span>
</div>
</div>
</div>
<!-- Booking details section -->
<div class="column alt box block-section" data-group="booking-details" data-title="Booking details" style="margin: 0 auto; width: 80%; padding-top: 10px; padding-bottom: 10px; text-align: left;">
<div style="margin-bottom: 2px; display: table; width: 100%;">
<div class="column col" style="width: 30%; padding-left: 10px; text-align: center; vertical-align: middle;">
<table role="presentation" width="100" cellspacing="0" cellpadding="0" style="margin: 0 auto; border-radius: 5px; overflow: hidden;">
<tbody><tr>
<td style="background-color: #df1e1e;"><p class="block-edit" data-block="booking-details-month" style="font-size: 13px; line-height: 28px; color: #ffffff; text-align: center; font-weight: 600; text-transform: uppercase;">October</p></td>
</tr>
<tr>
<td style="background-color: #f0f0f0;"><p class="block-edit" data-block="booking-details-day" style="font-size: 36px; line-height: 44px; color: #444444; text-align: center; font-weight: 600;">13</p></td>
</tr></tbody>
</table>
</div>
<div class="column col" style="width: 70%; padding-right: 30px; padding-left: 10px; vertical-align: middle;">
<h3 class="mobile-center block-edit block-remove" data-block="booking-details-title" style="margin: 0; font-size: 16px; line-height: 22px;">Productivity software and apps</h3>
<p class="text-sm mobile-center block-edit block-remove" data-block="booking-details-text">Friday 10am-6pm<br>Registration opens at 9am</p>
</div>
</div>
</div>
<!-- Short info listing section -->
<div class="block-section" data-group="short-info-listing" data-title="Short info listing">
<h2 class="block-edit block-remove" data-block="short-info-listing-title" style="text-align: center;">Special guests</h2>
<div class="column col col-3" style="padding-right: 7px; text-align: center;">
<a href="#"><img height="auto" src="profile-3.jpg" width="120" alt="" class="fill block-edit" data-block="short-info-listing-image-1" style="display: inline-block; border-radius: 100%; width: 120px; height: auto;"></a>
<p class="text-sm block-edit" data-block="short-info-listing-text-1"><strong>Mariah Perica</strong><br>CEO</p>
</div>
<div class="column col col-3" style="padding-right: 7px; padding-left: 7px; text-align: center;">
<a href="#"><img height="auto" src="profile-2.jpg" width="120" alt="" class="fill block-edit" data-block="short-info-listing-image-2" style="display: inline-block; border-radius: 100%; width: 120px; height: auto;"></a>
<p class="text-sm block-edit" data-block="short-info-listing-text-2"><strong>Derick Watts</strong><br>VP Engineering</p>
</div>
<div class="column col col-3" style="padding-right: 7px; padding-left: 7px; text-align: center;">
<a href="#"><img height="auto" src="profile-1.jpg" width="120" alt="" class="fill block-edit" data-block="short-info-listing-image-3" style="display: inline-block; border-radius: 100%; width: 120px; height: auto;"></a>
<p class="text-sm block-edit" data-block="short-info-listing-text-3"><strong>James Thompson</strong><br>VP Operations</p>
</div>
<div class="column col col-3" style="padding-left: 7px; text-align: center;">
<a href="#"><img height="auto" src="profile-5.jpg" width="120" alt="" class="fill block-edit block-remove" data-block="short-info-listing-image-4" style="display: inline-block; border-radius: 100%; width: 120px; height: auto;"></a>
<p class="text-sm block-edit" data-block="short-info-listing-text-4"><strong>Jane Wagner</strong><br>VP Marketing</p>
</div>
</div>
<!-- Product listing section -->
<div class="block-section" data-group="product-listing" data-title="Product listing">
<h2 class="block-edit block-remove" data-block="product-listing-title" style="text-align: center;">Essential products we recommend</h2>
<div class="column col col-4" style="padding-right: 7px;">
<a href="#"><img height="auto" src="product-glasses.jpg" width="190" alt="" class="fill block-edit" data-block="product-listing-image-1" style="display: block; border-radius: 5px; width: 190px; height: auto;"></a>
<div class="block-region block-remove" style="display: inline-block; width: 100%;">
<div style="float: left; padding-top: 5px;">
<p class="block-edit" data-block="product-listing-text-1" style="font-weight: 600;">Sunglasses</p>
</div>
<div style="float: right; padding-top: 5px; text-align: right;">
<p class="block-edit" data-block="product-listing-price-1">$30</p>
</div>
</div>
</div>
<div class="column col col-4" style="padding-right: 7px; padding-left: 7px;">
<a href="#"><img height="auto" src="product-banana.jpg" width="190" alt="" class="fill block-edit block-remove" data-block="product-listing-image-2" style="display: block; border-radius: 5px; width: 190px; height: auto;"></a>
<div class="block-region block-remove" style="display: inline-block; width: 100%;">
<div style="float: left; padding-top: 5px;">
<p class="block-edit" data-block="product-listing-text-2" style="font-weight: 600;">Banana</p>
</div>
<div style="float: right; padding-top: 5px; text-align: right;">
<p class="block-edit" data-block="product-listing-price-2">$2</p>
</div>
</div>
</div>
<div class="column col col-4" style="padding-left: 7px;">
<a href="#"><img height="auto" src="product-plant.jpg" width="190" alt="" class="fill block-edit block-remove" data-block="product-listing-image-3" style="display: block; border-radius: 5px; width: 190px; height: auto;"></a>
<div class="block-region block-remove" style="display: inline-block; width: 100%;">
<div style="float: left; padding-top: 5px;">
<p class="block-edit" data-block="product-listing-text-3" style="font-weight: 600;">Plant</p>
</div>
<div style="float: right; padding-top: 5px; text-align: right;">
<p class="block-edit" data-block="product-listing-price-3">$15</p>
</div>
</div>
</div>
</div>
<!-- Receipt section -->
<div class="column alt box block-section" data-group="receipt" data-title="Receipt" style="padding-top: 10px; padding-bottom: 10px; text-align: left;">
<div class="block-region block-repeat block-remove" style="margin: 0 20px; border-bottom: #ccc 1px solid; padding: 10px 0;">
<div style="display: table; width: 100%;">
<div class="column col col-6 mobile-center" style="padding-right: 10px; padding-left: 10px;">
<p class="text-sm block-edit" data-block="receipt-details-text-1"><strong>Billing Address</strong><br>123 Fake Street<br>Phoenix, AZ 85281</p>
</div>
<div class="column col col-6 mobile-center" style="padding-right: 10px; padding-left: 10px;">
<p class="text-sm block-edit" data-block="receipt-details-text-2"><strong>Shipping Address</strong><br>123 Fake Street<br>Phoenix, AZ 85281</p>
</div>
</div>
</div>
<div class="block-region block-repeat block-remove" style="margin: 0 20px; border-bottom: #ccc 1px solid; padding: 10px 0;">
<div style="display: table; width: 100%;">
<div class="column col" style="width: 20%; padding-left: 10px; text-align: center; vertical-align: middle;">
<a href="#"><img height="auto" src="product-glasses.jpg" width="100" alt="" class="fill block-edit" data-block="receipt-image" style="display: block; border-radius: 5px; width: 100px; height: auto;"></a>
</div>
<div class="column col mobile-center" style="width: 60%; padding-right: 10px; padding-left: 10px; vertical-align: middle;">
<h3 class="block-edit block-remove" data-block="receipt-title" style="margin: 0; font-size: 16px; line-height: 22px;">Sunglasses</h3>
<p class="text-sm block-edit block-remove" data-block="receipt-text">Style: Retro<br>Color: Black</p>
</div>
<div class="column col mobile-center" data-block="receipt-price" style="width: 20%; padding-right: 10px; padding-left: 10px; text-align: right; vertical-align: middle;">
<p class="text-sm block-edit" data-block="receipt-price">$30</p>
</div>
</div>
</div>
<div class="block-region block-repeat" style="margin: 0 20px; border-bottom: #ccc 1px solid; padding: 10px 0;">
<div style="display: table; width: 100%;">
<div class="column col mobile-center" style="width: 80%; padding-right: 10px; padding-left: 10px; vertical-align: middle;">
<p class="text-sm block-edit" data-block="receipt-totals-text">Subtotal</p>
</div>
<div class="column col mobile-center" style="width: 20%; padding-right: 10px; padding-left: 10px; text-align: right; vertical-align: middle;">
<p class="text-sm block-edit" data-block="receipt-totals-price">$30</p>
</div>
</div>
</div>
<div style="margin: 0 20px; padding: 10px 0;">
<div style="display: table; width: 100%;">
<div class="column col" style="width: 80%; padding-right: 10px; padding-left: 10px; vertical-align: middle;">
<p class="mobile-center block-edit" data-block="receipt-total-text" style="font-weight: bold;">Total</p>
</div>
<div class="column col mobile-center" style="width: 20%; padding-right: 10px; padding-left: 10px; text-align: right; vertical-align: middle;">
<p class="block-edit" data-block="receipt-total-price" style="font-weight: bold;">$30</p>
</div>
</div>
</div>
</div>
<!-- Status section -->
<div class="block-section" data-group="status" data-title="Status">
<h2 class="block-edit block-remove" data-block="status-title" style="text-align: center;">Thank you for your order!</h2>
<div style="display: table; margin: 0 auto; margin-bottom: 10px; width: 60%;">
<div class="column col col-4" style="padding-right: 7px; text-align: center;">
<a href="#" style="display: inline-block; border-radius: 100%; width: 80px; height: 80px; background-color: #fff; padding: 5px;"><img height="auto" src="icon-confirmation.png" width="70" alt="" class="fill block-edit" data-block="status-image-1" style="display: inline-block; margin: 5px; width: 70px; height: auto;"></a>
<p class="text-sm block-edit" data-block="status-text-1"><strong>Confirmed</strong></p>
</div>
<div class="column col col-4" style="padding-right: 7px; padding-left: 7px; text-align: center;">
<a href="#" style="display: inline-block; border-radius: 100%; width: 80px; height: 80px; padding: 5px;"><img height="auto" src="icon-delivery.png" width="70" alt="" class="fill block-edit" data-block="status-image-2" style="display: inline-block; margin: 5px; width: 70px; height: auto;"></a>
<p class="text-sm block-edit" data-block="status-text-2">Shipped</p>
</div>
<div class="column col col-4" style="padding-left: 7px; text-align: center;">
<a href="#" style="display: inline-block; border-radius: 100%; width: 80px; height: 80px; padding: 5px;"><img height="auto" src="icon-shipping.png" width="70" alt="" class="fill block-edit block-remove" data-block="status-image-3" style="display: inline-block; margin: 5px; width: 70px; height: auto;"></a>
<p class="text-sm block-edit" data-block="status-text-3">Delivered</p>
</div>
</div>
<p class="text-sm block-edit" data-block="status-description" style="text-align: center;">Your order is being prepared for delivery.<br>You'll receive another email once shipped.</p>
</div>
<!-- Message section -->
<div class="column alt box block-section" data-group="message" data-title="Message" style="display: table; padding: 20px; text-align: left;">
<div class="col" style="width: 20%; padding-right: 15px; vertical-align: top;">
<a href="#"><img height="auto" src="profile-3.jpg" width="95" alt="" class="fill block-edit" data-block="message-image" style="display: inline-block; border-radius: 100%; width: 95px; height: auto;"></a>
</div>
<div class="col" style="width: 80%;">
<p class="text-sm block-edit" data-block="message-from"><strong>Mariah Perica</strong><br>CEO, Our Organization</p>
<div class="spacer"><p> </p></div>
<p class="block-edit" data-block="message-text" style="font-size: 16px; line-height: 22px;"><strong>Today at 3:07pm:</strong><br>I either go to bed, or wake up the next morning, and look at a running list of 10-20 items that I keep on my calendar under an all-day event titled 'Today'. I pick at least two items I would like to get done for the day and move the rest to the following day.</p>
<div class="spacer"><p> </p></div>
<a href="#" class="btn block-edit" data-block="message-cta" target="_blank">Reply</a>
</div>
</div>
<!-- Product section -->
<div class="column alt box block-section" data-group="product" data-title="Product" style="padding-top: 10px; padding-bottom: 10px; text-align: left;">
<div class="container block-region block-repeat">
<div class="column col col-4" style="padding-top: 10px; text-align: center; vertical-align: top;">
<a href="#"><img height="auto" src="product-glasses.jpg" width="170" alt="" class="fill block-edit" data-block="product-image" style="display: inline-block; border-radius: 5px; width: 170px; height: auto;"></a>
</div>
<div class="column col col-8" style="padding-top: 10px; padding-right: 30px; padding-bottom: 10px; vertical-align: middle;">
<h3 class="block-edit" data-block="product-title" style="text-align: left;">Sunglasses – $30</h3>
<p class="text-sm block-edit" data-block="product-text">Style: Retro<br>Color: Black</p>
<div class="spacer"><p> </p></div>
<a href="#" class="btn block-edit" data-block="product-cta" target="_blank">Order now</a>
</div>
</div>
</div>
<!-- Survey section -->
<div class="column alt box block-section block-bgcolor" data-group="survey" data-title="Survey" style="padding: 30px; text-align: center;">
<h2 class="block-edit" data-block="survey-title" style="text-align: center;">How did we do?</h2>
<p><img src="icon-stars.png" width="400" alt="" class="fill block-edit" data-block="survey-image" style="display: inline-block; width: 400px; height: auto;"></p>
<p class="block-edit block-remove" data-block="survey-text">Help us improve our process by filling out a quick survey on your experience shopping with us.</p>
<div class="spacer"><p> </p></div>
<a href="#" class="btn block-edit block-remove" data-block="survey-cta" target="_blank">Submit survey</a>
</div>
<!-- Profile card section -->
<div class="column alt box block-section" data-group="profile-card" data-title="Profile card" style="display: table; margin: 0 auto; width: 70%; padding: 20px; text-align: left;">
<div class="column col col-4" style="padding-right: 15px; vertical-align: top; text-align: center;">
<a href="#"><img height="auto" src="profile-4.jpg" width="95" alt="" class="fill block-edit" data-block="profile-card-image" style="display: inline-block; border-radius: 100%; width: 95px; height: auto;"></a>
</div>
<div class="column col col-8">
<h3 class="block-edit" data-block="profile-card-name" style="text-align: left;">Nathan Sommers</h3>
<p class="text-sm block-edit" data-block="profile-card-membership"><span style="border-radius: 5px; border: #444444 2px solid; padding: 2px 6px; font-size: 14px; font-weight: 500;">Member since May 2021</span></p>
<div class="spacer"><p> </p></div>
<img height="auto" src="icon-star.png" width="35" alt="" style="display: inline-block; width: 35px; height: auto;"> <h2 class="block-edit" data-block="profile-card-points" style="display: inline-block; vertical-align: middle;">3,410 points</h2>
<a href="#" class="btn block-edit" data-block="profile-card-cta" target="_blank">View rewards</a>
</div>
</div>
<div class="spacer spacer-xl"><p> </p></div>
</div>
</div>
<!-- Footer -->
<div class="main footer">
<p class="block-edit">Built and edited using <a href="https://blocksedit.com" target="_blank">Blocks Edit</a>.<br>
<br>
© Our Organization, 123 Fake Street, Phoenix, AZ 85281<br>
<br>
<a href="#" target="_blank" class="unsubscribe">Unsubscribe</a>
</p>
</div>
</div>
</body>
</html>