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 URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
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.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and 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 esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM 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 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>
<style type="text/css">
html, body{ margin:0; padding:0; }
table{ margin-top: 0px !important; padding-top: 0px !important; }
</style>
<style type="text/css">
a img{ color:#000001 !important; }
.wysiwyg-text-align-right{ text-align: right; }
.wysiwyg-text-align-center { text-align: center; }
.wysiwyg-text-align-left{ text-align: left; }
.wysiwyg-text-align-justify{ text-align: justify; }
h1, #email-374923 h1{ text-shadow:none; padding-top:0; padding-right:0; padding-bottom:0; padding-left:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0; color:#000000!important; font-weight:400; font-style:normal; font-family:Proxima Nova; font-size:18px; line-height:23px; }
h2, #email-374923 h2{ text-shadow:none; padding-top:0; padding-right:0; padding-bottom:0; padding-left:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0; color:#000000!important; font-weight:400; font-style:normal; font-family:Arial; font-size:24px; line-height:32px; }
h3, #email-374923 h3{ text-shadow:none; padding-top:0; padding-right:0; padding-bottom:0; padding-left:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0; color:#000000!important; font-weight:400; font-style:normal; font-family:Arial; font-size:15px; line-height:21px; }
p, #email-374923 p{ text-shadow:none; padding-top:0; padding-right:0; padding-bottom:0; padding-left:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0; color:#000000!important; font-style:normal; font-family:Arial; font-size:14px; line-height:24px; }
a, #email-374923 a{ text-shadow:none; padding-top:0; padding-right:0; padding-bottom:0; padding-left:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0; color:#77B4F5!important; }
.h1_color_span_wrapper{ color: #000000; }
.h2_color_span_wrapper{ color: #000000; }
.h3_color_span_wrapper{ color: #000000; }
.p_color_span_wrapper{ color: #000000; }
.a_color_span_wrapper{ color: #77B4F5; }
.mi-all{ display: block; }
.mi-desktop{ display: block; }
.mi-mobile{
display: none;
font-size: 0;
max-height: 0;
line-height: 0;
padding: 0;
float: left;
overflow: hidden;
mso-hide: all; /* hide elements in Outlook 2007-2013 */
}
</style>
<style type="text/css">
div, p, a, li, td { -webkit-text-size-adjust:none; }
@media only screen and (max-device-width: 480px), screen and (max-width: 480px), screen and (orientation: landscape) and (max-width: 630px) {
/* very important! all except 'all' and this current type get a display:none; */
.mi-desktop{ display: none !important; }
/* then show the mobile one */
.mi-mobile{
display: block !important;
font-size: 12px !important;
max-height: none !important;
line-height: 1.5 !important;
float: none !important;
overflow: visible !important;
}
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body id="email-374923" style="background: #FFFFFF; font-family: sans-serif; margin-top: 0px !important; padding-top: 0px !important"
bgcolor="#FFFFFF">
<style tye="text/css">
div.preheader
{ display: none !important; }
</style>
<div class="preheader" style="font-size: 1px; display: none !important;">This seems like a good time to get to know each other |</div>
<table width="1"
height="1" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size:0px; line-height:0px;">
<img src="http://mi.warbyparker.com/p/cp/d4f7460701495475/o.gif?mi_u=4848508421999126537"
width="1" height="1">
</td>
</tr>
</table>
<table align="center" cellpadding="0" cellspacing="0" width="100%" style="background: #FFFFFF; border: 0; border-collapse: collapse; border-spacing: 0; margin: 0px 0 0; padding: 0"
bgcolor="#FFFFFF">
<tr align="center" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="center" valign="top" style="border: 0; border-collapse: collapse; border-spacing: 0">
<div class="mi-desktop" style="display: block">
<table width="640" class="mi-desktop" align="center" cellspacing="0" cellpadding="0"
border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; display: block; margin: 0; min-width: 640px; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top">
<table align="center" cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; margin: 0; min-width: 640px; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="241" align="left" valign="top" height="81">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2F&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-lkadmeqmjzy"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 81px; max-width: 241px; object-fit: fill"
alt="" width="241" height="88">
</a>
</td>
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="145" align="left" valign="top" height="81">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?gender=n&mi_u=4848508421999126537&url=http%3A%2F%2Fmi.warbyparker.com%2Fp%2Frp%2F96b866c52b6bc864%2Furl&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun">
<img src="http://mi.warbyparker.com/p/rp/96b866c52b6bc864.png?mi_u=4848508421999126537&gender=n"
style="-o-object-fit: fill; border: 0; display: block; line-height: 0; max-height: 81px; max-width: 145px; object-fit: fill"
alt="" width="145" height="88">
</a>
</td>
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="150" align="left" valign="top" height="81">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?gender=n&mi_u=4848508421999126537&url=http%3A%2F%2Fmi.warbyparker.com%2Fp%2Frp%2F88940e68238f8c4a%2Furl&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun">
<img src="http://mi.warbyparker.com/p/rp/88940e68238f8c4a.png?mi_u=4848508421999126537&gender=n"
style="-o-object-fit: fill; border: 0; display: block; line-height: 0; max-height: 81px; max-width: 150px; object-fit: fill"
alt="" width="150" height="88">
</a>
</td>
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="104" align="left" valign="top" height="81">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=http%3A%2F%2Fmi.warbyparker.com%2Fp%2Frp%2Fc6b5aa5d9789125d%2Furl&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="http://mi.warbyparker.com/p/rp/c6b5aa5d9789125d.png?mi_u=4848508421999126537"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 81px; max-width: 104px; object-fit: fill"
alt="" width="104" height="88">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="295">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-fgmalpdjtpf"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 295px; max-width: 640px; object-fit: fill"
alt="" width="640" height="292">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="182">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-fnkfedmdlet"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 182px; max-width: 640px; object-fit: fill"
alt="" width="640" height="183">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="216">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fhistory&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-jjttftirxgf"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 216px; max-width: 640px; object-fit: fill"
alt="" width="640" height="214">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="204">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fhistory&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-icqvqurouaj"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 204px; max-width: 640px; object-fit: fill"
alt="" width="640" height="206">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="215">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fhome-try-on&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-wttfxiwifbt"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 215px; max-width: 640px; object-fit: fill"
alt="" width="640" height="214">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="201">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=http%3A%2F%2Fmi.warbyparker.com%2Fp%2Frp%2Fce1c6e59b4b6993e%2Furl&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="http://mi.warbyparker.com/p/rp/ce1c6e59b4b6993e.png?mi_u=4848508421999126537"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 201px; max-width: 640px; object-fit: fill"
alt="" width="640" height="202">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="212">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fretail&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-ybulnhajeaw"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 212px; max-width: 640px; object-fit: fill"
alt="" width="640" height="210">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="227">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fretail&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-edanszjrvwg"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 227px; max-width: 640px; object-fit: fill"
alt="" width="640" height="230">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="212">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Foriginals&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-yfwevrrfymm"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 212px; max-width: 640px; object-fit: fill"
alt="" width="640" height="210">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="223">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=http%3A%2F%2Fmi.warbyparker.com%2Fp%2Frp%2F8061cb4a60291234%2Furl&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="http://mi.warbyparker.com/p/rp/8061cb4a60291234.png?mi_u=4848508421999126537"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 223px; max-width: 640px; object-fit: fill"
alt="" width="640" height="230">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Foriginals&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="8" src="https://mi-images-production.s3.amazonaws.com/crops/9305395/4d44f7b55994b315eec0d03c3cacb493-original.jpg?1466178717"
style="border: 0; color: #000001 !important; display: block; height: 8px; line-height: 0; max-height: 8px; max-width: 640px; min-height: 8px; min-width: 640px; width: 640px"
width="640">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="176">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-xragaepcdwg"
style="-o-object-fit: fill; border: 0; display: block; line-height: 0; max-height: 176px; max-width: 640px; object-fit: fill"
alt="" width="636" height="179">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="75">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-wpabdcupvnt"
style="-o-object-fit: fill; border: 0; display: block; line-height: 0; max-height: 75px; max-width: 640px; object-fit: fill"
alt="" width="640" height="76">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top">
<table align="center" cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; margin: 0; min-width: 640px; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="243" align="left" valign="top" height="68">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.instagram.com%2Fwarbyparker%2F&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-jhmacacctiu"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 68px; max-width: 243px; object-fit: fill"
alt="" width="242" height="70">
</a>
</td>
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="74" align="left" valign="top" height="68">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Ftwitter.com%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-yijxsdlvmrf"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 68px; max-width: 74px; object-fit: fill"
alt="" width="77" height="70">
</a>
</td>
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="87" align="left" valign="top" height="68">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.facebook.com%2Fwarbyparker%2F&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-fdathqkjoeq"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 68px; max-width: 87px; object-fit: fill"
alt="" width="87" height="70">
</a>
</td>
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="236" align="left" valign="top" height="68">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.snapchat.com%2Fadd%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-ydythdnxwxc"
style="-o-object-fit: fill; border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 68px; max-width: 236px; object-fit: fill"
alt="" width="232" height="70">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="9" src="https://mi-images-production.s3.amazonaws.com/crops/8806693/924582d8868421ffd7e72853795c4ca6-original.jpg?1462997390"
style="border: 0; display: block; height: 9px; line-height: 0; max-height: 9px; max-width: 640px; min-height: 9px; min-width: 640px; width: 640px"
width="640">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="280">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-nnctgykfgnj"
style="-o-object-fit: fill; border: 0; display: block; line-height: 0; max-height: 280px; max-width: 640px; object-fit: fill"
alt="" width="640" height="284">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="9" src="https://mi-images-production.s3.amazonaws.com/crops/8763912/75c39f6dc31096e11297d890aa87a8e3-original.jpg?1462802949"
style="border: 0; display: block; height: 9px; line-height: 0; max-height: 9px; max-width: 640px; min-height: 9px; min-width: 640px; width: 640px"
width="640">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td width="640" align="left" valign="top" height="182">
<div class="pre-header-text" style="color: #a7a9ac !important; font-size: 12px !important; text-align: center !important"
align="center"></div>
<div style="border-top-color: #000000; border-top-width: 1px; padding-bottom: 10px; padding-top: 10px; text-align: center"
align="center">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.facebook.com%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: #77B4F5 !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-shadow: none">
<img src="http://image.xtm.warbyparker.com/lib/fe9b13707566077f73/m/3/facebooke.jpg"
style="color: #000001 !important">
</a>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Ftwitter.com%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: #77B4F5 !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-shadow: none">
<img src="http://image.xtm.warbyparker.com/lib/fe9b13707566077f73/m/3/twitter.jpg"
style="color: #000001 !important">
</a>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=http%3A%2F%2Fwarbyparker.tumblr.com%2F&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: #77B4F5 !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-shadow: none">
<img src="http://image.xtm.warbyparker.com/lib/fe9b13707566077f73/m/3/tumblr.jpg"
style="color: #000001 !important">
</a>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Finstagram.com%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: #77B4F5 !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-shadow: none">
<img src="http://image.xtm.warbyparker.com/lib/fe9b13707566077f73/m/3/instagram.jpg"
style="color: #000001 !important">
</a>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.pinterest.com%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: #77B4F5 !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-shadow: none">
<img src="http://image.xtm.warbyparker.com/lib/fe9b13707566077f73/m/3/pinterest.jpg"
style="color: #000001 !important">
</a>
</div>
<div style="padding-bottom: 10px; padding-top: 10px; text-align: left" align="left">
<p style="color: #000000 !important; font-family: Arial; font-size: 12px; font-style: normal; line-height: 24px; margin: 0; padding: 0 0 0 15px; text-shadow: none">
<a href=http://%22%22 style="color: #414B56 !important; margin: 0; padding: 0 0 10px; text-align: left; text-decoration: none; text-shadow: none">Warby Parker</a>
</p>
<p style="color: #000000 !important; font-family: Arial; font-size: 12px; font-style: normal; line-height: 24px; margin: 0; padding: 0 0 0 15px; text-shadow: none">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fretail%2Fnew-york%2F161-avenue-of-americas&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: #00A2E1 !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-align: left; text-decoration: none; text-shadow: none">161 Avenue of the Americas, Sixth Floor, New York, NY 10013</a><span style="color: #414B56 !important; float: right; padding-right: 15px; text-align: right; text-decoration: none"><a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fbuy-a-pair-give-a-pair&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun" class="foot-link" style="color: #414B56 !important; float: right; margin: 0; padding: 0 15px 0 0; text-align: right; text-decoration: none; text-shadow: none">Buy a Pair, Give a Pair</a></span>
</p>
</div>
<div class="foot" style="border-top-color: #E8E8EE !important; border-top-style: solid !important; border-top-width: 1px !important; margin: 0 auto; width: 580px"></div>
<div style="padding-bottom: 10px; text-align: left" align="left">
<p style="color: #000000 !important; font-family: Arial; font-size: 10px; font-style: normal; line-height: 24px; margin: 0; padding: 10px 0 10px 15px; text-shadow: none"><span style="color: #45555f">Mon–Fri, 9 a.m.–9 p.m. ET</span><span style="color: #45555f"> | </span>
<span
style="color: #45555f">888.492.7297</span><span style="color: #45555f"> | </span>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2F&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
class="foot-link" style="color: #45555f !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">warbyparker.com</a><span style="color: #414B56 !important; float: right; font-size: 10px; padding-right: 15px; text-align: right; text-decoration: none"><a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=http%3A%2F%2Fwww.warbyparker.com%2Fprivacy-policy&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun" class="foot-link" style="color: #45555f !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">Privacy</a> |
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fapi%2Fv1%2Faccount%2Funsubscribe%3Fcustomer_email%3Dhtmlemail%254013prime.com%26t%3Daccount%252Fwelcome-conv&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun" class="foot-link" style="color: #45555f !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">Unsubscribe</a></span>
</p>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
<!--[if !mso]>
<!-->
<div class="mi-mobile" style="display: none; float: left; font-size: 0; line-height: 0; max-height: 0; mso-hide: all; overflow: hidden; padding: 0">
<table width="640" class="mi-mobile" align="center" cellspacing="0" cellpadding="0"
border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; display: none; float: left; font-size: 0; line-height: 0; margin: 0; max-height: 0; min-width: 640px; mso-hide: all; overflow: hidden; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="47" src="https://mi-images-production.s3.amazonaws.com/crops/8806463/b635c84c8e72d769e6f2db31c090376c-original.jpg?1462996541"
style="border: 0; display: block; height: 47px; line-height: 0; max-height: 47px; max-width: 640px; min-height: 47px; min-width: 640px; width: 640px"
width="640">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top">
<table align="center" cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; margin: 0; min-width: 640px; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="35" src="https://mi-images-production.s3.amazonaws.com/crops/8764088/690d0255f003982ecc96c23b3c61bd19-original.jpg?1462803405"
style="border: 0; display: block; height: 35px; line-height: 0; max-height: 35px; max-width: 174px; min-height: 35px; min-width: 174px; width: 174px"
width="174">
</td>
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2F&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="35" src="https://mi-images-production.s3.amazonaws.com/crops/8764089/6a6d709a05383bc1b6fb34589b88abb2-original.jpg?1462803405"
style="border: 0; color: #000001 !important; display: block; height: 35px; line-height: 0; max-height: 35px; max-width: 292px; min-height: 35px; min-width: 292px; width: 292px"
width="292">
</a>
</td>
<td align="left" valign="top" style="">
<img border="0" height="35" src="https://mi-images-production.s3.amazonaws.com/crops/8764086/690d0255f003982ecc96c23b3c61bd19-original.jpg?1462803404"
style="border: 0; display: block; height: 35px; line-height: 0; max-height: 35px; max-width: 174px; min-height: 35px; min-width: 174px; width: 174px"
width="174">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="19" src="https://mi-images-production.s3.amazonaws.com/crops/9303934/f6ae8c90e2d7353721167374cccf0388-original.jpg?1466173520"
style="border: 0; display: block; height: 19px; line-height: 0; max-height: 19px; max-width: 640px; min-height: 19px; min-width: 640px; width: 640px"
width="640">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top">
<table align="center" cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; margin: 0; min-width: 640px; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="60" src="https://mi-images-production.s3.amazonaws.com/crops/9303945/d4699302340b1afb21a257c1169dc03f-original.jpg?1466173528"
style="border: 0; display: block; height: 60px; line-height: 0; max-height: 60px; max-width: 43px; min-height: 60px; min-width: 43px; width: 43px"
width="43">
</td>
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="180" align="left" valign="top" height="60">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?gender=n&mi_u=4848508421999126537&url=http%3A%2F%2Fmi.warbyparker.com%2Fp%2Frp%2F2e4184b58a58b602%2Furl&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun">
<img src="http://mi.warbyparker.com/p/rp/2e4184b58a58b602.png?mi_u=4848508421999126537&gender=n"
style="border: 0; display: block; line-height: 0; max-height: 60px; max-width: 180px"
alt="" width="180" height="60">
</a>
</td>
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="193" align="left" valign="top" height="60">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?gender=n&mi_u=4848508421999126537&url=http%3A%2F%2Fmi.warbyparker.com%2Fp%2Frp%2F57c29de78e42c39a%2Furl&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun">
<img src="http://mi.warbyparker.com/p/rp/57c29de78e42c39a.png?mi_u=4848508421999126537&gender=n"
style="border: 0; display: block; line-height: 0; max-height: 60px; max-width: 193px"
alt="" width="193" height="60">
</a>
</td>
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="179" align="left" valign="top" height="60">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fretail&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-zjfgnnxwhsi"
style="border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 60px; max-width: 179px"
alt="" width="179" height="60">
</a>
</td>
<td align="left" valign="top" style="">
<img border="0" height="60" src="https://mi-images-production.s3.amazonaws.com/crops/9303952/15bbc8c171085b30038caba10d0aae88-original.jpg?1466173550"
style="border: 0; display: block; height: 60px; line-height: 0; max-height: 60px; max-width: 45px; min-height: 60px; min-width: 45px; width: 45px"
width="45">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="16" src="https://mi-images-production.s3.amazonaws.com/crops/9303942/046c100ea3b24cc573e4417e71a96388-original.jpg?1466173528"
style="border: 0; display: block; height: 16px; line-height: 0; max-height: 16px; max-width: 640px; min-height: 16px; min-width: 640px; width: 640px"
width="640">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="588">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2F&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-mevdbcbqabd"
style="border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 588px; max-width: 640px"
alt="" width="640" height="584">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2F&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="329" src="https://mi-images-production.s3.amazonaws.com/crops/8764121/bef88e6396f001bce972a2dc91efdf85-original.jpg?1462803420"
style="border: 0; color: #000001 !important; display: block; height: 329px; line-height: 0; max-height: 329px; max-width: 640px; min-height: 329px; min-width: 640px; width: 640px"
width="640">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fhistory&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="423" src="https://mi-images-production.s3.amazonaws.com/crops/8764124/f41feb1111d0b85805c0aad5ec1c3ba8-original.jpg?1462803425"
style="border: 0; color: #000001 !important; display: block; height: 423px; line-height: 0; max-height: 423px; max-width: 640px; min-height: 423px; min-width: 640px; width: 640px"
width="640">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fhistory&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="269" src="https://mi-images-production.s3.amazonaws.com/crops/8764131/d74174349f17b6f5180d8ccbd6685a84-original.jpg?1462803429"
style="border: 0; color: #000001 !important; display: block; height: 269px; line-height: 0; max-height: 269px; max-width: 640px; min-height: 269px; min-width: 640px; width: 640px"
width="640">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top">
<table align="center" cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; margin: 0; min-width: 640px; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="40" src="https://mi-images-production.s3.amazonaws.com/crops/8764141/b139fc6a7e42d883d447cd815bf47335-original.jpg?1462803437"
style="border: 0; display: block; height: 40px; line-height: 0; max-height: 40px; max-width: 261px; min-height: 40px; min-width: 261px; width: 261px"
width="261">
</td>
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fhistory&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="40" src="https://mi-images-production.s3.amazonaws.com/crops/8764142/98407115e184b284da3e4698ceaec3cb-original.jpg?1462803437"
style="border: 0; color: #000001 !important; display: block; height: 40px; line-height: 0; max-height: 40px; max-width: 123px; min-height: 40px; min-width: 123px; width: 123px"
width="123">
</a>
</td>
<td align="left" valign="top" style="">
<img border="0" height="40" src="https://mi-images-production.s3.amazonaws.com/crops/8764138/0bc54b845e2fcf0493b0dffbd98e4603-original.jpg?1462803436"
style="border: 0; display: block; height: 40px; line-height: 0; max-height: 40px; max-width: 256px; min-height: 40px; min-width: 256px; width: 256px"
width="256">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="86" src="https://mi-images-production.s3.amazonaws.com/crops/8764149/6f11816b7868f10659ee2ea0f796bcca-original.jpg?1462803443"
style="border: 0; display: block; height: 86px; line-height: 0; max-height: 86px; max-width: 640px; min-height: 86px; min-width: 640px; width: 640px"
width="640">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="423">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fhome-try-on&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-qhjydnslgui"
style="border: 0; color: #000001 !important; display: block; line-height: 0; max-height: 423px; max-width: 640px"
alt="" width="640" height="420">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=http%3A%2F%2Fmi.warbyparker.com%2Fp%2Frp%2Fdd92b7f0bd43b765%2Furl&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="274" src="http://mi.warbyparker.com/p/rp/dd92b7f0bd43b765.png?mi_u=4848508421999126537"
style="border: 0; color: #000001 !important; display: block; height: 274px; line-height: 0; max-height: 274px; max-width: 640px; min-height: 274px; min-width: 640px; width: 640px"
width="640">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top">
<table align="center" cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; margin: 0; min-width: 640px; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="38" src="https://mi-images-production.s3.amazonaws.com/crops/8764190/7a397067fb549cae65b5a05a160423b0-original.jpg?1462803467"
style="border: 0; display: block; height: 38px; line-height: 0; max-height: 38px; max-width: 232px; min-height: 38px; min-width: 232px; width: 232px"
width="232">
</td>
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=http%3A%2F%2Fmi.warbyparker.com%2Fp%2Frp%2F28345f7b209f632a%2Furl&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="38" src="http://mi.warbyparker.com/p/rp/28345f7b209f632a.png?mi_u=4848508421999126537"
style="border: 0; color: #000001 !important; display: block; height: 38px; line-height: 0; max-height: 38px; max-width: 174px; min-height: 38px; min-width: 174px; width: 174px"
width="174">
</a>
</td>
<td align="left" valign="top" style="">
<img border="0" height="38" src="https://mi-images-production.s3.amazonaws.com/crops/8764186/f6e0d7ebab43090a4bb535a82364205b-original.jpg?1462803462"
style="border: 0; display: block; height: 38px; line-height: 0; max-height: 38px; max-width: 234px; min-height: 38px; min-width: 234px; width: 234px"
width="234">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="85" src="https://mi-images-production.s3.amazonaws.com/crops/8764192/0fe59a42e72a5572103b03e65bdef14c-original.jpg?1462803467"
style="border: 0; display: block; height: 85px; line-height: 0; max-height: 85px; max-width: 640px; min-height: 85px; min-width: 640px; width: 640px"
width="640">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fretail&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="423" src="https://mi-images-production.s3.amazonaws.com/crops/8764195/58b61dd1f66913586b56867cdf1034a4-original.jpg?1462803473"
style="border: 0; color: #000001 !important; display: block; height: 423px; line-height: 0; max-height: 423px; max-width: 640px; min-height: 423px; min-width: 640px; width: 640px"
width="640">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fretail&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="322" src="https://mi-images-production.s3.amazonaws.com/crops/8764197/438359851df55f5fce3353e5f6eec3be-original.jpg?1462803478"
style="border: 0; color: #000001 !important; display: block; height: 322px; line-height: 0; max-height: 322px; max-width: 640px; min-height: 322px; min-width: 640px; width: 640px"
width="640">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top">
<table align="center" cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; margin: 0; min-width: 640px; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="39" src="https://mi-images-production.s3.amazonaws.com/crops/8764203/568f6821fcc20c2916eca7c31cb0e0f0-original.jpg?1462803479"
style="border: 0; display: block; height: 39px; line-height: 0; max-height: 39px; max-width: 210px; min-height: 39px; min-width: 210px; width: 210px"
width="210">
</td>
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fretail&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="39" src="https://mi-images-production.s3.amazonaws.com/crops/8764204/f1d74f4c95460b0cc80c672f6cd82bc9-original.jpg?1462803480"
style="border: 0; color: #000001 !important; display: block; height: 39px; line-height: 0; max-height: 39px; max-width: 223px; min-height: 39px; min-width: 223px; width: 223px"
width="223">
</a>
</td>
<td align="left" valign="top" style="">
<img border="0" height="39" src="https://mi-images-production.s3.amazonaws.com/crops/8764201/2295d923a9f71e7ac51ee896dc10f5cb-original.jpg?1462803479"
style="border: 0; display: block; height: 39px; line-height: 0; max-height: 39px; max-width: 207px; min-height: 39px; min-width: 207px; width: 207px"
width="207">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="86" src="https://mi-images-production.s3.amazonaws.com/crops/8764207/61ee9ea1576becbfceba1e81db32272c-original.jpg?1462803485"
style="border: 0; display: block; height: 86px; line-height: 0; max-height: 86px; max-width: 640px; min-height: 86px; min-width: 640px; width: 640px"
width="640">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Foriginals&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="423" src="https://mi-images-production.s3.amazonaws.com/crops/8764208/79aac3e89e0fb607059f4563b82ec9b5-original.jpg?1462803489"
style="border: 0; color: #000001 !important; display: block; height: 423px; line-height: 0; max-height: 423px; max-width: 640px; min-height: 423px; min-width: 640px; width: 640px"
width="640">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=http%3A%2F%2Fmi.warbyparker.com%2Fp%2Frp%2F7c20f9104762d6f2%2Furl&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="321" src="http://mi.warbyparker.com/p/rp/7c20f9104762d6f2.png?mi_u=4848508421999126537"
style="border: 0; color: #000001 !important; display: block; height: 321px; line-height: 0; max-height: 321px; max-width: 640px; min-height: 321px; min-width: 640px; width: 640px"
width="640">
</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top">
<table align="center" cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; margin: 0; min-width: 640px; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="48" src="https://mi-images-production.s3.amazonaws.com/crops/8764218/6da4bb0fd4a409ca9c304dc6c4c1a0d2-original.jpg?1462803497"
style="border: 0; display: block; height: 48px; line-height: 0; max-height: 48px; max-width: 233px; min-height: 48px; min-width: 233px; width: 233px"
width="233">
</td>
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Foriginals&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="48" src="https://mi-images-production.s3.amazonaws.com/crops/8764219/435302246f51fce7febbd77e933ee92b-original.jpg?1462803497"
style="border: 0; color: #000001 !important; display: block; height: 48px; line-height: 0; max-height: 48px; max-width: 171px; min-height: 48px; min-width: 171px; width: 171px"
width="171">
</a>
</td>
<td align="left" valign="top" style="">
<img border="0" height="48" src="https://mi-images-production.s3.amazonaws.com/crops/8764216/6e06b61b01e9cbb7a0f3f6599e028cee-original.jpg?1462803496"
style="border: 0; display: block; height: 48px; line-height: 0; max-height: 48px; max-width: 236px; min-height: 48px; min-width: 236px; width: 236px"
width="236">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="85" src="https://mi-images-production.s3.amazonaws.com/crops/9305224/cd45f966cdc6bdebdfd74aee9b4d76c8-original.jpg?1466177916"
style="border: 0; display: block; height: 85px; line-height: 0; max-height: 85px; max-width: 640px; min-height: 85px; min-width: 640px; width: 640px"
width="640">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td style="line-height: 0px; mso-line-height-rule: exactly; vertical-align: top"
width="640" align="left" valign="top" height="267">
<img src="https://s3.amazonaws.com/mi-images-production/uploads%2Faccount-53006-374923-bilrfvmbiza"
style="border: 0; display: block; line-height: 0; max-height: 267px; max-width: 640px"
alt="" width="640" height="269">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="172" src="https://mi-images-production.s3.amazonaws.com/crops/9305227/9aebc4e3206ddcb13b521970387c3c9a-original.jpg?1466177953"
style="border: 0; display: block; height: 172px; line-height: 0; max-height: 172px; max-width: 640px; min-height: 172px; min-width: 640px; width: 640px"
width="640">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top">
<table align="center" cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; margin: 0; min-width: 640px; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="57" src="https://mi-images-production.s3.amazonaws.com/crops/8764229/8144d3ddf26e94c7e766fe529c2809be-original.jpg?1462803512"
style="border: 0; display: block; height: 57px; line-height: 0; max-height: 57px; max-width: 151px; min-height: 57px; min-width: 151px; width: 151px"
width="151">
</td>
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Finstagram.com%2Fwarbyparker%2F&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="57" src="https://mi-images-production.s3.amazonaws.com/crops/8764233/c9a4883cb9ad67ab7417fe3e2a24934b-original.jpg?1462803513"
style="border: 0; color: #000001 !important; display: block; height: 57px; line-height: 0; max-height: 57px; max-width: 194px; min-height: 57px; min-width: 194px; width: 194px"
width="194">
</a>
</td>
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Ftwitter.com%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="57" src="https://mi-images-production.s3.amazonaws.com/crops/8764239/d750b9b10bab0f9fa9bed4625af1e470-original.jpg?1462803519"
style="border: 0; color: #000001 !important; display: block; height: 57px; line-height: 0; max-height: 57px; max-width: 135px; min-height: 57px; min-width: 135px; width: 135px"
width="135">
</a>
</td>
<td align="left" valign="top" style="">
<img border="0" height="57" src="https://mi-images-production.s3.amazonaws.com/crops/8764240/bfc2c7eaad8b590be01762890cd81d63-original.jpg?1462803520"
style="border: 0; display: block; height: 57px; line-height: 0; max-height: 57px; max-width: 160px; min-height: 57px; min-width: 160px; width: 160px"
width="160">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top">
<table align="center" cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; margin: 0; min-width: 640px; padding: 0">
<tbody>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="52" src="https://mi-images-production.s3.amazonaws.com/crops/8764231/184b94116017eeb1eb8608cd7c1004c0-original.jpg?1462803513"
style="border: 0; display: block; height: 52px; line-height: 0; max-height: 52px; max-width: 147px; min-height: 52px; min-width: 147px; width: 147px"
width="147">
</td>
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.facebook.com%2Fwarbyparker%2F&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="52" src="https://mi-images-production.s3.amazonaws.com/crops/8764232/bcc6adc2870cfcd5b246b2afa1082040-original.jpg?1462803513"
style="border: 0; color: #000001 !important; display: block; height: 52px; line-height: 0; max-height: 52px; max-width: 172px; min-height: 52px; min-width: 172px; width: 172px"
width="172">
</a>
</td>
<td align="left" valign="top" style="">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.snapchat.com%2Fadd%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
target="_blank" style="border: none; color: #77B4F5 !important; display: block; font-size: 10px; line-height: 0; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">
<img border="0" height="52" src="https://mi-images-production.s3.amazonaws.com/crops/8764237/ff2dfb5c623e528e8c0ff219a0aad245-original.jpg?1462803517"
style="border: 0; color: #000001 !important; display: block; height: 52px; line-height: 0; max-height: 52px; max-width: 169px; min-height: 52px; min-width: 169px; width: 169px"
width="169">
</a>
</td>
<td align="left" valign="top" style="">
<img border="0" height="52" src="https://mi-images-production.s3.amazonaws.com/crops/8764238/4b0c75a22dcdb6e025f234373acfa536-original.jpg?1462803518"
style="border: 0; display: block; height: 52px; line-height: 0; max-height: 52px; max-width: 152px; min-height: 52px; min-width: 152px; width: 152px"
width="152">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td align="left" valign="top" style="">
<img border="0" height="805" src="https://mi-images-production.s3.amazonaws.com/crops/8764225/c081dc7ddbad5bfa6ed770976e770502-original.jpg?1462803506"
style="border: 0; display: block; height: 805px; line-height: 0; max-height: 805px; max-width: 640px; min-height: 805px; min-width: 640px; width: 640px"
width="640">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="left" style="border: 0; border-collapse: collapse; border-spacing: 0">
<td>
<table cellspacing="0" cellpadding="0" border="0" style="border: 0; border-collapse: collapse; border-spacing: 0; min-width: 640px">
<tbody>
<tr style="border: 0; border-collapse: collapse; border-spacing: 0">
<td width="640" align="left" valign="top" height="504">
<div style="border-top-color: #45555f !important; border-top-style: solid !important; border-top-width: 0px !important; margin: 0 auto; width: 92% !important"
class="foot">
<div style="border-top-color: #45555f; border-top-style: solid; border-top-width: 1px; padding-bottom: 20px; padding-top: 30px; text-align: center"
align="center">
<br>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.facebook.com%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: transparent !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none !important; text-shadow: none">
<img style="color: #000001 !important; padding-left: 35px; padding-right: 35px; width: 32px"
src="http://e.warbyparker.com/img/common/social-icon-facebook.png">
</a>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Ftwitter.com%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: transparent !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none !important; text-shadow: none">
<img style="color: #000001 !important; padding-left: 35px; padding-right: 35px; width: 32px"
src="http://e.warbyparker.com/img/common/social-icon-twitter.png">
</a>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=http%3A%2F%2Fwarbyparker.tumblr.com%2F&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: transparent !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none !important; text-shadow: none">
<img style="color: #000001 !important; padding-left: 35px; padding-right: 35px; width: 20px"
src="http://e.warbyparker.com/img/common/social-icon-tumblr.png">
</a>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Finstagram.com%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: transparent !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none !important; text-shadow: none">
<img style="color: #000001 !important; padding-left: 35px; padding-right: 35px; width: 32px"
src="http://e.warbyparker.com/img/common/social-icon-instagram.png">
</a>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.pinterest.com%2Fwarbyparker&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: transparent !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none !important; text-shadow: none">
<img style="color: #000001 !important; padding-left: 35px; padding-right: 35px; width: 32px"
src="http://e.warbyparker.com/img/common/social-icon-pinterest.png">
</a>
</div>
<div style="border-collapse: collapse; color: #414B56; font-family: 'Arial', sans-serif; font-size: 20px; font-weight: normal; line-height: 50px; margin: 1em 0; padding: 0; text-align: left"
align="left">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fretail%2Fnew-york%2F161-avenue-of-americas&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: #77B4F5 !important; float: left; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-shadow: none; width: 45%"><strong>Warby Parker</strong>
</a>
<div style="float: right; width: 40%" class="foot-link">Mon–Fri, 9 a.m.–9 p.m. ET</div>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fretail%2Fnew-york%2F161-avenue-of-americas&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: #00A2E1 !important; float: left; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-shadow: none; width: 45%">161 Avenue of the Americas, Sixth Floor</a>
<div style="float: right; width: 40%">888.492.7297</div>
<div style="float: right; width: 40%">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fbuy-a-pair-give-a-pair&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: #414B56 !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none !important; text-shadow: none">Buy a Pair, Give a Pair</a>
</div>
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fretail%2Fnew-york%2F161-avenue-of-americas&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="clear: both; color: #00A2E1 !important; float: left; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-shadow: none; width: 45%">New York, NY 10013</a>
<div style="float: right; width: 40%">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com%2Fapi%2Fv1%2Faccount%2Funsubscribe%3Fcustomer_email%3Dhtmlemail%254013prime.com%26t%3Daccount%252Fwelcome-conv&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
class="foot-link" style="color: #45555f !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">Unsubscribe</a>
</div>
<div style="clear: both; float: left; width: 45%">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=https%3A%2F%2Fwww.warbyparker.com&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
style="color: #414B56 !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">warbyparker.com</a>
</div>
<div style="float: right; width: 40%">
<a href="http://mi.warbyparker.com/p/cp/d4f7460701495475/c?mi_u=4848508421999126537&url=http%3A%2F%2Fwww.warbyparker.com%2Fprivacy-policy&utm_campaign=account%2Fwelcome-conv&utm_medium=email&utm_source=mailgun"
class="foot-link" style="color: #414B56 !important; margin-top:0; padding-top:0; margin-right:0; padding-right:0; margin-bottom:0; padding-bottom:0; margin-left:0; padding-left:0; text-decoration: none; text-shadow: none">Privacy</a>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
<!--<![endif]-->
</td>
</tr>
</table>
<div style="display: none; font: 15px courier; white-space: nowrap"></div>
<img alt="" width="1" height="1" border="0" src="https://www.warbyparker.com/mailopen/yxBDu49ZxFh0tZFZe67Z2aNk-7tWOgBY7qZs-8NeOYY0ODQ4NTA4NDIyODQ2NzYxNjE4">
<img width="1px" height="1px" alt="" src="http://e.mail3.warbyparker.com/o/eJx9UM1uhCAQfhq5NBoYwMUDl1b3Ffa4QRwrWxHDsjX79sVtmzRp09vMfH_5JkT36hZdAIwhJIznKXjMGxm07PuRKuI0UKaoAAmMUiEqVoE8tl3zzNuWdZJ3shDUGzfzajOxv68mvmGsbPBk0oodQHA1NmBU0wwIYJHTWiFlxtgGSdRT8jPu-mzD-Bqdx4c46YR-nU3C0lgbbksq4LjhnDEsbVjeM-N66y9oU3n6PBfw8rT9GjMvPGqWPzqSb_O9-9_--xuuuAxnN2ihhJJUCQAl6kPNaqbIV_hu8G9-xj8Asttzzw">
</body>
</html>
Also see: Tab Triggers