HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URL's added here will be added as <link>
s in order, and before the CSS in the editor. If you link to another Pen, it will include the CSS from that Pen. If the preprocessor matches, it will attempt to combine them before processing.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
If the stylesheet you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Brandless</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<style type="text/css">
/* MEDIA QUERIES */
@media screen and (max-width: 480px) {
.main-menu {
width: 400px !important;
}
.header-title {
font-size: 32px !important;
line-height: 45px !important;
}
.header-subtitle {
font-size: 14px !important;
line-height: 14px !important;
}
.header-item {
font-size: 20px !important;
line-height: 2Get4px !important;
}
.header-item-description {
font-size: 16px !important;
line-height: 20px !important;
}
.header-image {
width: 300px;
}
.hide-mobile {
display: none !important;
}
.mobile-center {
text-align: center !important;
width: 700px !important;
font-size: 14px !important;
}
.product-description {
width: 70% !important;
}
.product-price {
width: 30% !important;
text-align: center !important;
}
.footer-text {
font-size: 10px !important;
}
.footer-links {
width: 10%;
text-align: left;
}
.button {
width: 250px !important;
font-size: 14px !important;
}
.button a {
font-size: 14px !important;
}
.more-to-love-title {
font-size: 14px !important;
}
.more-to-love-table {
width: 300px !important;
}
.section-table {
max-width: 400px !important;
}
.aisle-td {
width: 18em !important;
}
}
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!--[if gte mso 9]><xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml><![endif]-->
<!--[if !mso]><!-- --><meta content="IE=edge" http-equiv="X-UA-Compatible" /><!--<![endif]-->
<link rel="stylesheet" href="https://fonts.typotheque.com/WF-028470-009652.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<style type="text/css">
/* CLIENT-SPECIFIC STYLES */
body, table, td, a { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
table, td { mso-table-lspace: 0pt; mso-table-rspace: 0pt; }
img { -ms-interpolation-mode: bicubic; }
/* RESET STYLES */
img { border: 0; height: auto; width: auto; line-height: 100%; outline: none; text-decoration: none; }
table { border-collapse: collapse !important; }
body { height: 100% !important; margin: 0 !important; padding: 0 !important; width: 100% !important; }
/* iOS BLUE LINKS */
a[x-apple-data-detectors] {
color: inherit !important;
text-decoration: none !important;
font-size: inherit !important;
font-family: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
}
/* ANDROID CENTER FIX */
div[style*="margin: 16px 0;"] { margin: 0 !important; }
</style>
<style>
html *,
html *:before,
html *:after {
box-sizing: border-box;
}
table {
border-collapse:collapse;
border:none;
border-spacing: 0px;
table-layout:fixed;
}
tr,
td,
th {
padding:0;
}
script {
visibility:hidden;
}
#body {
font-family: 'Neutral Regular', 'Lato', helvetica, sans-serif;
/*font-family: helvetica, sans-serif;*/
font-size:14px;
background-color: rgba(242,241,239,.25);
box-sizing: border-box;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
margin:0;
padding:0;
/*min-width:100vw;*/
color:#3E3D3C;
letter-spacing:0.2px;
line-height:1.3em;
}
#body * {
box-sizing:border-box;
}
#preheader {
display:none !important;
}
#container {
width:100%;
max-width:600px;
margin:2em auto 4em;
padding:0;
background-color:#fff;
border-radius:4px;
/*overflow:hidden !important;*/
}
a {
white-space:nowrap;
text-decoration:underline;
color:#3e57ff;
}
a img {
border-style:none;
}
#feedback {
color:#fff;
background-color:#f62968;
padding:.5em;
text-align:center;
}
#feedback strong,
#feedback span {
white-space:nowrap;
}
#feedback strong {
text-transform:uppercase;
}
#feedback a {
color:#fff;
}
#header {
border-bottom:1px solid #d2d2d1;
}
#header .topBar {
border-radius:4px 4px 0 0;
background-color:#262624;
color:#fff;
text-align:right;
padding:.5em 1em;
}
#header .topBar a {
color:#fff;
text-decoration:none;
}
#header .spacer {
width:0;
}
#nav {
width:94%;
padding:1em;
}
#header .account {
text-align:right;
}
#nav div {
line-height:1em;
overflow: hidden;
height: 3em;
}
#nav a {
display:inline-block;
}
#nav .logo {
height: 3em;
}
#nav .logo img {
height:3em;
max-height:3em;
}
#nav .aisle {
padding: 1.3em 0.5em;
font-size:.8em;
vertical-align: top;
}
#header .account {
padding-right: 1em;
}
#header .account img {
height:2em;
max-height:2em;
}
#main {
/*padding:1em;*/
/*background-color:rgba(242,241,239,1);*/
}
h1,
h2,
h3 {
font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
color:#262524;
font-weight: 800;
margin:0;
padding:.5em;
text-align:center;
line-height:1.3em;
}
h1 {
font-size:2.5em;
text-transform:uppercase;
}
h2 {
font-size:2em;
}
h3 {
font-size:1.5em;
}
h1 span,
h2 span,
h3 span {
white-space:nowrap;
}
p {
line-height:1.3em;
margin:0 0 1em;
font-size:1em;
text-align:left;
}
p span {
white-space:nowrap;
}
strong {
font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
font-weight: bold;
white-space:nowrap;
}
.section {
padding:1em 2em;
}
#footer {
border-radius: 0 0 4px 4px;
overflow:hidden;
}
#footer .black {
background-color:#262624;
color:#fff;
padding:2em;
}
#footer .logo {
line-height: 0;
display: inline-block;
}
#footer .logo img {
height:3em;
max-height:3em;
width:auto;
text-align:center;
display:inline-block;
}
#footer a {
color:#fff;
text-decoration:none;
}
#footer div {
padding:.5em;
text-align:center;
}
#footer .social {
width:70%;
margin:auto;
padding:1em;
}
#footer .social a {
display:inline-block;
/*width:calc(100%/5);*/
width:19%;
text-align:center;
}
#footer .social a img {
height:1.5em;
max-height:1.5em;
}
#footer .thingsToDo {
margin:auto;
}
#footer .thingsToDo a {
display:inline-block;
text-align:center;
border-right:1px solid #fff;
text-transform:uppercase;
font-weight:800;
margin:0;
padding:0 1em;
font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
}
#footer .thingsToDo .last {
border-right:none;
}
#footer .disclosures {
color:#6d6e71;
padding:1em;
line-height:1.3em;
}
#footer .disclosures a {
color:#6d6e71;
text-decoration:underline;
}
#footer .disclosures div {
white-space:nowrap;
display:inline-block;
padding:0 .5em;
}
#footer .disclosures .separator {
border-right:1px solid #6d6e71;
}
#footer .disclosures .source,
#footer .disclosures .viewUnsubscribe {
white-space:normal;
}
#footer .disclosures .source span,
#footer .disclosures .viewUnsubscribe span {
white-space:nowrap;
}
#footer .disclosures .source {
padding-top:1em;
}
.title {
font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
font-weight: 800;
text-transform: uppercase;
text-decoration:none;
color:#262524;
}
.lightText {
color:#6D6D6C;
}
.nowrap {
white-space:nowrap;
}
.button {
padding: 1em 0;
text-align: center;
}
.button a {
display:inline-block;
background-color:#4860ff;
font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
font-weight: 800;
color:#fff;
text-decoration:none;
border-radius:4px;
padding:1em 0;
text-align:center;
width:100%;
/*box-sizing:border-box;*/
}
.disclaimer {
font-size:.75em;
}
.disclaimer a {
color:#3E3D3C;
}
@media only screen and (max-width: 600px) {
#body {
font-size:16px;
}
#container {
margin:0 auto;
/*font-size:1.25em;*/
}
#container,
#header .topBar {
border-radius:0;
}
#header .spacer,
#header .account {
width:15%;
}
#nav {
/*width:75%;*/
text-align:center;
}
#nav .logo img {
/*height:initial !important;*/
/*width:70% !important;*/
}
#header .aisle {
display:none !important;
}
#footer .black {
padding: 1em 0;
}
#footer .social {
width:100%;
}
#footer .thingsToDo {
text-align:left;
font-size:0;
}
#footer .thingsToDo a {
font-size: initial;
/*width: calc(100%/3);*/
width: 33%;
white-space:initial;
}
#footer .thingsToDo a span {
display:block;
}
#footer .disclosures div {
display:block;
}
#footer .disclosures .separator {
border-right:none;
}
}
/*Hide Sailthru logo and defaul unsubscribe*/
/*#body > p:last-of-type,*/
/*#body > p:last-of-type small,*/
/*#body > p:last-of-type small a,*/
/*#body > a:last-of-type,*/
/*#body > a:last-of-type img */
</style>
<style>
#shop_values {
background-color:#f2f1ef;
padding:1em;
}
#shop_values p {
text-align:center;
}
#shop_values .values {
text-align:center;
border-top:0.125rem solid #d2d2d1;
}
#shop_values .values a {
display:inline-block;
background-color:#fff;
border-radius:2em;
padding:.5em 1em;
margin:1em 1em 1em 0;
text-decoration:none;
color:#262624;
line-height:0;
}
#shop_values .values a img {
width:2em;
margin-right:.25em;
vertical-align:bottom;
}
#shop_values .values a strong {
display:inline-block;
font-size:1em;
padding:.5em 0;
vertical-align:top;
line-height:1em;
}
</style>
<style>
@media only screen and (max-width: 600px) {
.related .itemHeader {
width:45%;
}
.related table .arrow {
width:0;
}
.related table .arrow img {
width: 0;
display:none;
}
.related .item a img.grid {
height:6em;
}
.related .item {
/*width:50% !important;*/
}
.related .item a .plus img {
width: 15%;
}
.related .flex {
width:0;
display:none;
}
.related .aisles .itemHeader {
width:100%;
}
.related .aisle td {
padding: 0 2.5em .35em 2.5em;
}
.related .aisle a {
padding:1em 1em;
}
.related .aisle a {
font-size:.95em;
}
.related .button a {
width:100% !important;
}
.related .item a .productTitle {
text-align: left;
font-size:.8em;
}
}
</style>
</style>
</head>
<body style="margin: 0 !important; padding: 0 !important; background-color: #eeeeee; font-family: 'Neutral Regular', 'Lato', helvetica, sans-serif;">
<span id="preheader" style="display:none !important;">plus, back in stock! shop melatonin and more</span>
<br>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="center" style="background-color: #eeeeee;">
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600px">
<tr class="">
<td align="right" valign="top" style="font-size:0; background-color: #262524;">
<div style="display:inline-block; max-width:45%; min-width:100px; vertical-align:top; width:100%;">
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:300px;">
<tr>
<td align="right" valign="top" style="padding: .10em .25em .10em 0; font-size: 48px; font-weight: 400; line-height: 48px;">
<p style="font-family: NeutralStd-Regular, Helvetica, Arial, sans-serif; font-size: 16px; color: #ffffff; margin: 0; text-align:right;">
Hi, Smiles Davis!
</p>
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr class="main-menu">
<td align="left" style="padding: 10px 0 10px 0; background-color: #ffffff; border-bottom: 1px solid #D2D2D1;" height="100%" valign="top" width="100%">
<table cellpadding="0" cellspacing="0" border="0" class="right" style="padding-top: 10px;">
<tr>
<td width="20%" align="left" style="padding:0 1em 0 1em;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9icmFuZGxlc3MuY29tP2N2b3NyYz1lbWFpbC5zYWlsdGhydS5ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmcmY3ZvX2NhbXBhaWduPWJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZw/5990baede9328b07348b91a1Bff104fd9" target="_blank"><img src="https://media.sailthru.com/5k1/1k1/5/n/5924856fd8879.png" alt="Brandless Logo" width='' style="white-space:nowrap; display: block; border: 0px; width: 160px;"/></a>
</td>
<td class="hide-mobile" width="16%" align="center" style="padding:0 .5em 0 .5em;">
<p style="font-size: 14px; font-weight: 700; line-height: 11px; color: #000000; margin: 0; text-transform: uppercase; text-align: center;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2NhdGVnb3J5L2Zvb2Q_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1Ba2d0d6c5" target="_blank" style="white-space:nowrap; text-decoration:none; color: #000000;">Food</a>
</p>
</td>
<td class="hide-mobile" width="16%" align="center" style="padding:0 .5em 0 .5em;">
<p style="font-size: 14px; font-weight: 700; line-height: 11px; color: #000000; margin: 0; text-transform: uppercase; text-align: center;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2NhdGVnb3J5L2hvdXNlaG9sZC1zdXBwbGllcz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1Bbd43697c" target="_blank" style="white-space:nowrap; text-decoration:none; color: #000000;">Household</a>
</p>
</td>
<td class="hide-mobile" width="16%" align="center" style="padding:0 .5em 0 .5em;">
<p style="font-size: 14px; font-weight: 700; line-height: 16px; color: #000000; margin: 0; text-transform: uppercase; text-align: center;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2NhdGVnb3J5L2JlYXV0eT9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1Bc4f9235e" target="_blank" style="white-space:nowrap; text-decoration:none; color: #000000;">Beauty</a>
</p>
</td>
<td class="hide-mobile" width="16%" align="center" style="padding:0 .5em 0 .5em;">
<p style="font-size: 14px; font-weight: 700; line-height: 16px; color: #000000; margin: 0; text-transform: uppercase; text-align: center;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL3Nob3BfYWxsP2N2b3NyYz1lbWFpbC5zYWlsdGhydS5ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmcmY3ZvX2NhbXBhaWduPWJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZw/5990baede9328b07348b91a1B1763b8e0" target="_blank" style="white-space:nowrap; text-decoration:none; color: #000000;">Shop All</a>
</p>
</td>
<td class="hide-mobile" width="16%" align="right" style="padding:0 .5em 0 .5em;">
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2FjY291bnQ_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1B581adfff' style="white-space:nowrap;">
<img src="https://media.sailthru.com/5k1/1k1/5/u/592df3e915abf.png" style="display: block; border: 0px; width: 25px;"/>
</a>
</td>
</tr>
</table>
</td>
</tr>
<tr align="center" id='textbanner' style="background-color:#4860FF; padding:.5em; display:block;" width="100%">
<td style="">
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly93d3cuYnJhbmRsZXNzLmNvbT9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1Bf24fa1c7' style="text-decoration:none;">
<p class="banner-text" style="font-family: 'Neutral Regular', 'Lato', helvetica, sans-serif; font-size:1em; text-align:center; color:#FFF; margin:0;">
$5 Flat Rate Shipping On All Orders!
</p>
</a>
</td>
</tr>
<!-- Full Width image -->
<tr>
<td align="center" style="background-color: #ffffff; display: block; line-height: 0; vertical-align:top;">
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9icmFuZGxlc3NsaWZlLz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1B0e7331e8'>
<img src='https://media.sailthru.com/5k1/1k1/b/l/5a14a5ab50689.png'
alt='We are thankful for you' style="width: 100%;">
</a>
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9icmFuZGxlc3NsaWZlLz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1C0e7331e8'>
<img src='https://media.sailthru.com/5k1/1k1/b/l/5a14a5abdcbac.gif'
alt='We are thankful for you' style="width: 100%;">
</a>
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9icmFuZGxlc3MuY29tL2hlbHAvZ2l2ZT9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1Bfa85baf5'>
<img src='https://media.sailthru.com/5k1/1k1/b/l/5a14a5ae1cea5.png'
alt='meals donated' style="width: 100%;">
</a>
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL0JyYW5kbGVzc0xpZmUvP2N2b3NyYz1lbWFpbC5zYWlsdGhydS5ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmcmY3ZvX2NhbXBhaWduPWJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZw/5990baede9328b07348b91a1B82a7028f'>
<img src='https://media.sailthru.com/5k1/1k1/b/m/5a15f68ebae2f.png'
alt='Easy Recipes for 3 cute Halloween desserts.' style="width: 100%;">
</a>
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9ibG9nLmJyYW5kbGVzcy5jb20vMjAxNy8xMS8yMC80LXdheXMtc3RyZXNzLWxlc3MtY2VsZWJyYXRlLWd1aWRlZC1tZWRpdGF0aW9uLz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1Bf384e7d8'>
<img src='https://media.sailthru.com/5k1/1k1/b/m/5a15f6904ea78.png'
alt='Easy Recipes for 3 cute Halloween desserts.' style="width: 100%;">
</a>
</td>
</tr>
<!-- More to Love -->
<tr style="background-color: #F2F1EF;">
<td align="center" valign="top" style="padding-top: 20px; padding-bottom: 20px;">
<h3 style="text-align: center; font-weight: 800; font-size: 2.5em; color: #262524;">
Back In Stock
</h3>
</td>
</tr>
<!-- Two column product line -->
<tr style="background-color: #F2F1EF;">
<td align="center" valign="top" style="padding-bottom: 40px;">
<div style="display: inline-block; max-width: 40%; vertical-align: top; width: 100%; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-top:20px; background-color: #fff; border-radius: 4px;">
<table align="right" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:400px; border-bottom: 1px solid #d8d8d8;">
<tr>
<td align="right" valign="top" style="padding-bottom: 15px;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9icmFuZGxlc3MuY29tL3Byb2R1Y3RzL3N0ZWFrLWtuaWZlLTIzNz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1B78c69748" style="text-decoration: none;">
<img src="https://brandless-1.imgix.net/spree/images/194/original/steakKnife.png?ixlib=rb-1.1.0&w=1580&h=1060&q=85&fm=jpg&s=b56870b8456ff393ea98dc6e0ff6eb56" style="display: block; border: 0px; width: 100%;" alt="Sour Gummy Worms"/>
<br />
<p style="font-weight: 400;color: #000000; margin: 0; padding-left: 20px;
line-height:1.3em; margin:0 0 1em; font-size:1em; text-align:left; font-family: 'Neutral Regular', 'Lato', helvetica, sans-serif;"><br>Steak Knife</p>
</a>
</td>
</tr>
</table>
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:300px;">
<tr>
<td align="left" valign="top" style="padding-left:10px;">
<p style="font-size: 0.875rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px;">$3</p>
</td>
<td align="right" valign="top" style="padding-right:10px;">
<p style="font-size: 0.75rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px; text-align: right;">1ct</p>
</td>
</tr>
</table>
</div>
<div style="display: inline-block; max-width: 40%; vertical-align: top; width: 100%; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-top:20px; background-color: #fff; border-radius: 4px;">
<table align="right" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:400px; border-bottom: 1px solid #d8d8d8;">
<tr>
<td align="right" valign="top" style="padding-bottom: 15px;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9icmFuZGxlc3MuY29tL3Byb2R1Y3RzL21lbGF0b25pbi0zbWc_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1Bb38a7245" style="text-decoration: none;">
<img src="https://brandless-2.imgix.net/spree/images/604/original/vitamin_melatonin.png?ixlib=rb-1.1.0&w=1580&h=1060&q=85&fm=jpg&s=f4ed70efb96e423b8d55ba342a4eb71c" style="display: block; border: 0px; width: 100%;" alt="Gummy Fish"/>
<br />
<p style="font-weight: 400;color: #000000; margin: 0; padding-left: 20px;
line-height:1.3em; margin:0 0 1em; font-size:1em; text-align:left; font-family: 'Neutral Regular', 'Lato', helvetica, sans-serif;"><br/>Melatonin 3mg</p>
</a>
</td>
</tr>
</table>
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:300px;">
<tr>
<td align="left" valign="top" style="padding-left:10px;">
<p style="font-size: 0.875rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px;">$3</p>
</td>
<td align="right" valign="top" style="padding-right:10px;">
<p style="font-size: 0.75rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px; text-align: right;">60ct</p>
</td>
</tr>
</table>
</div>
</td>
</tr>
<!-- Two column product line -->
<tr style="background-color: #F2F1EF;">
<td align="center" valign="top" style="padding-bottom: 40px;">
<div style="display: inline-block; max-width: 40%; vertical-align: top; width: 100%; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-top:20px; background-color: #fff; border-radius: 4px;">
<table align="right" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:400px; border-bottom: 1px solid #d8d8d8;">
<tr>
<td align="right" valign="top" style="padding-bottom: 15px;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9icmFuZGxlc3MuY29tL3Byb2R1Y3RzL2FjYWNpYS1oYW5kbGUtc2lsaWNvbmUtc2VydmluZy1zcG9vbi0yMjQ_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1B3b79c34e" style="text-decoration: none;">
<img src="https://brandless-2.imgix.net/spree/images/503/original/spoon.png?ixlib=rb-1.1.0&w=1580&h=1060&q=85&fm=jpg&s=45870175a5985477610bdf0cfaf09510" style="display: block; border: 0px; width: 100%;" alt="Gummy Fruit Wedges"/>
<br />
<p style="font-weight: 400;color: #000000; margin: 0; padding-left: 20px;
line-height:1.3em; margin:0 0 1em; font-size:1em; text-align:left; font-family: 'Neutral Regular', 'Lato', helvetica, sans-serif;"><br>Silicone Serving Spoon</p>
</a>
</td>
</tr>
</table>
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:300px;">
<tr>
<td align="left" valign="top" style="padding-left:10px;">
<p style="font-size: 0.875rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px;">$3</p>
</td>
<td align="right" valign="top" style="padding-right:10px;">
<p style="font-size: 0.75rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px; text-align: right;">1ct</p>
</td>
</tr>
</table>
</div>
<div style="display: inline-block; max-width: 40%; vertical-align: top; width: 100%; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-top:20px; background-color: #fff; border-radius: 4px;">
<table align="right" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:400px; border-bottom: 1px solid #d8d8d8;">
<tr>
<td align="right" valign="top" style="padding-bottom: 15px;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9icmFuZGxlc3MuY29tL3Byb2R1Y3RzL2Nhbi1vcGVuZXI_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1Babb90ff2" style="text-decoration: none;">
<img src="https://brandless-1.imgix.net/spree/images/764/original/canOpener2.png?ixlib=rb-1.1.0&w=1580&h=1060&q=85&fm=jpg&s=66a47d2912431b092168ac75888ec191" style="display: block; border: 0px; width: 100%;" alt="Dried Cranberries"/>
<br />
<p style="font-weight: 400;color: #000000; margin: 0; padding-left: 20px;
line-height:1.3em; margin:0 0 1em; font-size:1em; text-align:left; font-family: 'Neutral Regular', 'Lato', helvetica, sans-serif;"><br/>Can Opener</p>
</a>
</td>
</tr>
</table>
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:300px;">
<tr>
<td align="left" valign="top" style="padding-left:10px;">
<p style="font-size: 0.875rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px;">$3</p>
</td>
<td align="right" valign="top" style="padding-right:10px;">
<p style="font-size: 0.75rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px; text-align: right;">1ct</p>
</td>
</tr>
</table>
</div>
</td>
</tr>
<!-- More to Love -->
<tr style="background-color: #F2F1EF;">
<td align="center" valign="top" style="padding-top: 20px; padding-bottom: 20px;">
<h3 style="text-align: center; font-weight: 800; font-size: 2.5em; color: #262524;">
Snacks We Love
</h3>
</td>
</tr>
<!-- Two column product line -->
<tr style="background-color: #F2F1EF;">
<td align="center" valign="top" style="padding-bottom: 40px;">
<div style="display: inline-block; max-width: 40%; vertical-align: top; width: 100%; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-top:20px; background-color: #fff; border-radius: 4px;">
<table align="right" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:400px; border-bottom: 1px solid #d8d8d8;">
<tr>
<td align="right" valign="top" style="padding-bottom: 15px;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9icmFuZGxlc3MuY29tL3Byb2R1Y3RzL21hcGxlLWNyZW1lLWNvb2tpZXM_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1B5b6b336d" style="text-decoration: none;">
<img src="https://brandless-1.imgix.net/spree/images/592/original/cookies_mapleCream.png?ixlib=rb-1.1.0&w=1580&h=1060&q=85&fm=jpg&s=a38d6b43e3e4fb38e232068e93c14760" style="display: block; border: 0px; width: 100%;" alt="Maple Creme Cookies"/>
<br />
<p style="font-weight: 400;color: #000000; margin: 0; padding-left: 20px;
line-height:1.3em; margin:0 0 1em; font-size:1em; text-align:left; font-family: 'Neutral Regular', 'Lato', helvetica, sans-serif;">Maple Creme<br>Cookies</p>
</a>
</td>
</tr>
</table>
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:300px;">
<tr>
<td align="left" valign="top" style="padding-left:10px;">
<p style="font-size: 0.875rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px;">$3</p>
</td>
<td align="right" valign="top" style="padding-right:10px;">
<p style="font-size: 0.75rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px; text-align: right;">11.4oz</p>
</td>
</tr>
</table>
</div>
<div style="display: inline-block; max-width: 40%; vertical-align: top; width: 100%; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-top:20px; background-color: #fff; border-radius: 4px;">
<table align="right" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:400px; border-bottom: 1px solid #d8d8d8;">
<tr>
<td align="right" valign="top" style="padding-bottom: 15px;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9icmFuZGxlc3MuY29tL3Byb2R1Y3RzL3NvdXItY3JlYW0tb25pb24tcG9wcGVkLXBvdGF0by1jcmlzcHM_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1B362428a3" style="text-decoration: none;">
<img src="https://brandless.imgix.net/spree/images/559/original/potatoCrisps_sourCreamOnion.png?ixlib=rb-1.1.0&w=1580&h=1060&q=85&fm=jpg&s=3a5c87ac2f8ec9eababf0f5040856586" style="display: block; border: 0px; width: 100%;" alt="Organic While Wheat Animal Cookies"/>
<br />
<p style="font-weight: 400;color: #000000; margin: 0; padding-left: 20px;
line-height:1.3em; margin:0 0 1em; font-size:1em; text-align:left; font-family: 'Neutral Regular', 'Lato', helvetica, sans-serif;">Sour Cream & Onion<br/>Popped Potato Crisps</p>
</a>
</td>
</tr>
</table>
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:300px;">
<tr>
<td align="left" valign="top" style="padding-left:10px;">
<p style="font-size: 0.875rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px;">$3</p>
</td>
<td align="right" valign="top" style="padding-right:10px;">
<p style="font-size: 0.75rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px; text-align: right;">5oz</p>
</td>
</tr>
</table>
</div>
</td>
</tr>
<!-- Two column product line -->
<tr style="background-color: #F2F1EF;">
<td align="center" valign="top" style="padding-bottom: 40px;">
<div style="display: inline-block; max-width: 40%; vertical-align: top; width: 100%; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-top:20px; background-color: #fff; border-radius: 4px;">
<table align="right" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:400px; border-bottom: 1px solid #d8d8d8;">
<tr>
<td align="right" valign="top" style="padding-bottom: 15px;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9icmFuZGxlc3MuY29tL3Byb2R1Y3RzL2NyYW5iZXJyeS1vYXRzLWNyaXNwcz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1B8f109661" style="text-decoration: none;">
<img src="https://brandless-1.imgix.net/spree/images/489/original/crisps_cranberryOat.png?ixlib=rb-1.1.0&w=1580&h=1060&q=85&fm=jpg&s=c0e11f76dc2b7ecc63dc566f91b33f88" style="display: block; border: 0px; width: 100%;" alt="Chocolate Creme Cookies"/>
<br />
<p style="font-weight: 400;color: #000000; margin: 0; padding-left: 20px;
line-height:1.3em; margin:0 0 1em; font-size:1em; text-align:left; font-family: 'Neutral Regular', 'Lato', helvetica, sans-serif;">Cranberry &<br/>Oat Crisps</p>
</a>
</td>
</tr>
</table>
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:300px;">
<tr>
<td align="left" valign="top" style="padding-left:10px;">
<p style="font-size: 0.875rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px;">$3</p>
</td>
<td align="right" valign="top" style="padding-right:10px;">
<p style="font-size: 0.75rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px; text-align: right;">5.3oz</p>
</td>
</tr>
</table>
</div>
<div style="display: inline-block; max-width: 40%; vertical-align: top; width: 100%; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-top:20px; background-color: #fff; border-radius: 4px;">
<table align="right" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:400px; border-bottom: 1px solid #d8d8d8;">
<tr>
<td align="right" valign="top" style="padding-bottom: 15px;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9icmFuZGxlc3MuY29tL3Byb2R1Y3RzL3ZlZ2dpZS1jaGlwcz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1B8d228093" style="text-decoration: none;">
<img src="https://brandless.imgix.net/spree/images/461/original/chips_veggie.png?ixlib=rb-1.1.0&w=1580&h=1060&q=85&fm=jpg&s=6ae891db99c5e336a543af1a59979064" style="display: block; border: 0px; width: 100%;" alt="Maple Creme Cookies"/>
<br />
<p style="font-weight: 400;color: #000000; margin: 0; padding-left: 20px;
line-height:1.3em; margin:0 0 1em; font-size:1em; text-align:left; font-family: 'Neutral Regular', 'Lato', helvetica, sans-serif;"><br>Vegetable Chips</p>
</a>
</td>
</tr>
</table>
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:300px;">
<tr>
<td align="left" valign="top" style="padding-left:10px;">
<p style="font-size: 0.875rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px;">$3</p>
</td>
<td align="right" valign="top" style="padding-right:10px;">
<p style="font-size: 0.75rem; font-weight: 400; line-height: 16px; color: #6d6d6c; margin: 10px; text-align: right;">9oz</p>
</td>
</tr>
</table>
</div>
</td>
</tr>
<!--Aisles -->
<tr class="related" style="background-color: #f2f1ef; padding: 1em;">
<td style="padding-top: 20px;">
<table class="aisles" cellspacing="0" cellpadding="0" border="0" style="width: 100%;">
<tr>
<th></th>
<th class='itemHeader' style='width:90%;'></th>
<th></th>
</tr>
<tr class='aisle'>
<td style="padding: 0 .25em .35em;"></td>
<td style="padding: 0 .25em .35em;">
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2NhdGVnb3J5L25ldz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1Bfdf29031' target='blank_' style='white-space:nowrap; border-left:5px solid #7e44d9; display: block; background-color: #fff; border-radius: 4px; padding: 1em 1em .75em; text-decoration: none; color: #262624; '>
<span class='title' style="font-size: 1.25em; display:inline-block; width:50%; font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
font-weight: 800; text-transform: uppercase; text-decoration:none; color:#262524;">New</span>
<span class='cta' style="text-align: right; font-size: .85em; display:inline-block; width:50%;">
<span class="lightText" style="text-decoration: underline; display: inline; color:#6D6D6C;">Shop This Aisle</span>
<img src="https://media.sailthru.com/5k1/1k1/5/u/592dec250a9d0.png" style="height:.5em;">
</span>
</a>
</td>
<td style="padding: 0 .25em .35em;"></td>
</tr>
<tr class='aisle'>
<td style="padding: 0 .25em .35em;"></td>
<td style="padding: 0 .25em .35em;">
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2NhdGVnb3J5L2Zvb2Q_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1Ca2d0d6c5' target='blank_' style='white-space:nowrap; border-left:5px solid #f3a82e; display: block; background-color: #fff; border-radius: 4px; padding: 1em 1em .75em; text-decoration: none; color: #262624; '>
<span class='title' style="font-size: 1.25em; display:inline-block; width:50%; font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
font-weight: 800; text-transform: uppercase; text-decoration:none; color:#262524;">Food</span>
<span class='cta' style="text-align: right; font-size: .85em; display:inline-block; width:50%;">
<span class="lightText" style="text-decoration: underline; display: inline; color:#6D6D6C;">Shop This Aisle</span>
<img src="https://media.sailthru.com/5k1/1k1/5/u/592dec250a9d0.png" style="height:.5em;">
</span>
</a>
</td>
<td style="padding: 0 .25em .35em;"></td>
</tr>
<tr class='aisle'>
<td style="padding: 0 .25em .35em;"></td>
<td style="padding: 0 .25em .35em;">
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2NhdGVnb3J5L2hvdXNlaG9sZC1zdXBwbGllcz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1Cbd43697c' target='blank_' style='white-space:nowrap; border-left:5px solid #4860ff; display: block; background-color: #fff; border-radius: 4px; padding: 1em 1em .75em; text-decoration: none; color: #262624; '>
<span class='title' style="font-size: 1.25em; display:inline-block; width:50%; font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
font-weight: 800; text-transform: uppercase; text-decoration:none; color:#262524;">Household</span>
<span class='cta' style="text-align: right; font-size: .85em; display:inline-block; width:50%;">
<span class="lightText" style="text-decoration: underline; display: inline; color:#6D6D6C;">Shop This Aisle</span>
<img src="https://media.sailthru.com/5k1/1k1/5/u/592dec250a9d0.png" style="height:.5em;">
</span>
</a>
</td>
<td style="padding: 0 .25em .35em;"></td>
</tr>
<tr class='aisle'>
<td style="padding: 0 .25em .35em;"></td>
<td style="padding: 0 .25em .35em;">
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2NhdGVnb3J5L2JlYXV0eT9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1Cc4f9235e' target='blank_' style='white-space:nowrap; border-left:5px solid #3ecfda; display: block; background-color: #fff; border-radius: 4px; padding: 1em 1em .75em; text-decoration: none; color: #262624; '>
<span class='title' style="font-size: 1.25em; display:inline-block; width:50%; font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
font-weight: 800; text-transform: uppercase; text-decoration:none; color:#262524;">Beauty</span>
<span class='cta' style="text-align: right; font-size: .85em; display:inline-block; width:50%;">
<span class="lightText" style="text-decoration: underline; display: inline; color:#6D6D6C;">Shop This Aisle</span>
<img src="https://media.sailthru.com/5k1/1k1/5/u/592dec250a9d0.png" style="height:.5em;">
</span>
</a>
</td>
<td style="padding: 0 .25em .35em;"></td>
</tr>
<tr class='aisle'>
<td style="padding: 0 .25em .35em;"></td>
<td style="padding: 0 .25em .35em;">
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2NhdGVnb3J5L3BlcnNvbmFsLWNhcmU_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1B687169e0' target='blank_' style='white-space:nowrap; border-left:5px solid #f62968; display: block; background-color: #fff; border-radius: 4px; padding: 1em 1em .75em; text-decoration: none; color: #262624; '>
<span class='title' style="font-size: 1.25em; display:inline-block; width:50%; font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
font-weight: 800; text-transform: uppercase; text-decoration:none; color:#262524;">Personal Care</span>
<span class='cta' style="text-align: right; font-size: .85em; display:inline-block; width:50%;">
<span class="lightText" style="text-decoration: underline; display: inline; color:#6D6D6C;">Shop This Aisle</span>
<img src="https://media.sailthru.com/5k1/1k1/5/u/592dec250a9d0.png" style="height:.5em;">
</span>
</a>
</td>
<td style="padding: 0 .25em .35em;"></td>
</tr>
<tr class='aisle'>
<td style="padding: 0 .25em .35em;"></td>
<td style="padding: 0 .25em .35em;">
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2NhdGVnb3J5L2hvbWUtYW5kLW9mZmljZT9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1B993a2362' target='blank_' style='white-space:nowrap; border-left:5px solid #27cd8c; display: block; background-color: #fff; border-radius: 4px; padding: 1em 1em .75em; text-decoration: none; color: #262624; '>
<span class='title' style="font-size: 1.25em; display:inline-block; width:50%; font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
font-weight: 800; text-transform: uppercase; text-decoration:none; color:#262524;">Home & Office</span>
<span class='cta' style="text-align: right; font-size: .85em; display:inline-block; width:50%;">
<span class="lightText" style="text-decoration: underline; display: inline; color:#6D6D6C;">Shop This Aisle</span>
<img src="https://media.sailthru.com/5k1/1k1/5/u/592dec250a9d0.png" style="height:.5em;">
</span>
</a>
</td>
<td style="padding: 0 .25em .35em;"></td>
</tr>
<tr class='aisle'>
<td style="padding: 0 .25em .35em;"></td>
<td style="padding: 0 .25em .35em;">
<a href='http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2NhdGVnb3J5L2hlYWx0aD9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1B2ba3e305' target='blank_' style='white-space:nowrap; border-left:5px solid #c9087d; display: block; background-color: #fff; border-radius: 4px; padding: 1em 1em .75em; text-decoration: none; color: #262624; '>
<span class='title' style="font-size: 1.25em; display:inline-block; width:50%; font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;
font-weight: 800; text-transform: uppercase; text-decoration:none; color:#262524;">Health</span>
<span class='cta' style="text-align: right; font-size: .85em; display:inline-block; width:50%;">
<span class="lightText" style="text-decoration: underline; display: inline; color:#6D6D6C;">Shop This Aisle</span>
<img src="https://media.sailthru.com/5k1/1k1/5/u/592dec250a9d0.png" style="height:.5em;">
</span>
</a>
</td>
<td style="padding: 0 .25em .35em;"></td>
</tr>
</table>
<tr align="center" style="background-color: #f2f1ef;">
<td class="" style="padding: 1em 0; text-align: center; border-radius: 5px;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9icmFuZGxlc3MuY29tLz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1Ba7b38b0c" target="_blank" style="display:inline-block; background-color:#4860ff; font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif; font-weight: 800; color:#fff;
text-decoration:none; border-radius:4px; padding:1em 0; text-align:center; width:50%;">Shop Brandless</a>
</td>
</tr>
<tr class="footer">
<td class="black" align="center" style="background-color: #262624;" height="100%" valign="top" width="100%">
<table align="center" border="0" cellpadding="0" cellspacing="0" style="">
<tr>
<td align="center">
<img src="https://media.sailthru.com/5k1/1k1/5/n/59248e96b9723.png" style="padding-top: 2em; width:160px; text-align: center; display: inline-block;"/>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" border="0">
<br />
<tr class="" style="font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;">
<td class="black" align="center" style="" height="100%" valign="top" width="100%">
<table style="width: 50%;" cellpadding="0" cellspacing="0" border="0">
<br />
<tr class="social" style="margin: auto; padding: 1em;">
<td width="" align="center" class="social-icon" style="display: inline-block; width: 20%; text-align:center;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL0JyYW5kbGVzc0xpZmUvP2N2b3NyYz1lbWFpbC5zYWlsdGhydS5ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmcmY3ZvX2NhbXBhaWduPWJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZw/5990baede9328b07348b91a1C82a7028f" target="_blank"><img src="https://media.sailthru.com/5k1/1k1/5/u/592df3e9890bc.png" style="height: 1.5em; max-height: 1.5em;"/></a>
</td>
<td width="" align="center" class="social-icon" style="display: inline-block; width: 20%; text-align:center;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly90d2l0dGVyLmNvbS9icmFuZGxlc3M_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1Bac7e278b" target="_blank"><img src="https://media.sailthru.com/5k1/1k1/5/u/592df3eb453e4.png" style="height: 1.5em; max-height: 1.5em;"/></a>
</td>
<td width="" align="center" class="social-icon" style="display: inline-block; width: 20%; text-align:center;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9icmFuZGxlc3NsaWZlLz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1D0e7331e8" target="_blank"><img src="https://media.sailthru.com/5k1/1k1/5/u/592df3e9f16b4.png" style="height: 1.5em; max-height: 1.5em;"/></a>
</td>
<td width="" align="center" class="social-icon" style="display: inline-block; width: 20%; text-align:center;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly9tZWRpdW0uY29tL0BicmFuZGxlc3NsaWZlLz9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1B80bf6543" target="_blank"><img src="https://media.sailthru.com/5k1/1k1/5/u/592df3eacbd94.png" style="height: 1.5em; max-height: 1.5em;"/></a>
</td>
<td width="" align="center" class="social-icon" style="display: inline-block; width: 20%; text-align:center;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cHM6Ly93d3cubGlua2VkaW4uY29tL2NvbXBhbnkvYnJhbmRsZXNzLWluYy4_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1B908a29aa" target="_blank"><img src="https://media.sailthru.com/5k1/1k1/5/u/592df3ea6b0ae.png" style="height: 1.5em; max-height: 1.5em;"/></a>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" border="0" class="right" style="margin-bottom: 2em;">
<br />
<tr class="thingsToDo">
<td style="display: inline-block; text-align: center; border-right: 1px solid #fff; text-transform: uppercase; font-weight: 800; font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;">
<p class="footer-text" style="font-weight: 800; color: #fffff; padding: 0em 1em 0 1em; margin: 0;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL3Nob3BfYWxsP2N2b3NyYz1lbWFpbC5zYWlsdGhydS5ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmcmY3ZvX2NhbXBhaWduPWJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZw/5990baede9328b07348b91a1C1763b8e0" target="_blank" style="text-decoration:none; color: #fff;">Shop Our Aisles</a>
</p>
</td>
<td style="display: inline-block; text-align: center; border-right: 1px solid #fff; text-transform: uppercase; font-weight: 800; font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;">
<p class="footer-text" style="font-weight: 800; color: #fffff; padding: 0em 1em 0 1em; margin: 0;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL3d3dy5icmFuZGxlc3MuY29tL2hlbHA_Y3Zvc3JjPWVtYWlsLnNhaWx0aHJ1LmJsYXN0XzExMjExNyUyMFRoYW5rc2dpdmluZyZjdm9fY2FtcGFpZ249Ymxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5n/5990baede9328b07348b91a1B3e3b6349" target="_blank" style="text-decoration:none; color: #fff;">Contact Us</a>
</p>
</td>
<td style="display: inline-block; text-align: center; border-right: none; text-transform: uppercase; font-weight: 800; font-family: 'Neutral Medium', 'Lato', helvetica, sans-serif;">
<p class="footer-text" style="font-weight: 800; color: #fffff; padding: 0em 1em 0 1em; margin: 0;">
<a href="http://link.mail.brandless.com/click/11336104.353953/aHR0cDovL2Jsb2cuYnJhbmRsZXNzLmNvbT9jdm9zcmM9ZW1haWwuc2FpbHRocnUuYmxhc3RfMTEyMTE3JTIwVGhhbmtzZ2l2aW5nJmN2b19jYW1wYWlnbj1ibGFzdF8xMTIxMTclMjBUaGFua3NnaXZpbmc/5990baede9328b07348b91a1B5543374d" target="_blank" style="text-decoration:none; color: #fff;">Read the Blog</a>
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr class="disclosures" style="">
<td align="center" style="padding: 1em; background-color: #ffffff;">
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:600px;">
<tr>
<td style="font-family: NeutralStd-Regular, Helvetica, Arial, sans-serif; font-size: 14px; line-height: 24px;">
<p class="" style="font-size: 13px; font-weight: 400; line-height: 20px; color: #6d6e71; text-align:center;">
© 2017 Brandless Inc. All Rights Reserved | PO Box Address 472033, San Francisco CA
<br />
<br />
You're receiving this email because you <span>signed up at Brandless.com</span>
<a href='#' target="_blank" style="color: #6d6e71;">View in browser</a> or <a href='#' target="_blank" style="color: #6d6e71;">unsubscribe</a>, no hard feelings.
</p>
</td>
</tr>
</table>
</td>
</tr>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</a>
</html>
Also see: Tab Triggers