Build a cross-client-safe HTML email signature from name, title, contact details and a LinkedIn link. Live preview, one-click copy, entirely offline.
Outlook renders HTML email through Word’s layout engine, not a browser engine, which means it ignores flexbox, most CSS classes, and anything defined in a <style> block. A signature built with modern CSS looks fine in Gmail and breaks silently in Outlook — margins collapse, colors vanish, the two-column layout stacks into one. This tool only ever outputs a single <table> with inline styles, the one markup shape every major email client still renders consistently.
Fill in a name and whichever contact fields apply; every blank field is left out of the output rather than rendered as an empty line. Pick an accent color for the name and links, or type a hex value directly. The live preview and the copyable HTML update as you type.
Click Load Sample and the form fills with Priya Ramanathan, Senior Product Designer at Northwind Studio, plus a phone number, email, website and LinkedIn URL, all under a blue #2563EB accent. Click it 3 more times and the fourth entry, Devon Clarke, has no company and no phone: the generated signature shows only the name, job title, email and website, with no gap where the missing fields would have been.
style attribute on the exact element it affects, because Outlook strips a <style> block entirely and several other clients strip external stylesheets on paste.northwindstudio.example outputs href="https://northwindstudio.example", so a signature never ships a broken relative link.& in the output, so the generated table always parses as valid HTML no matter what you type.name@domain.tld pattern shows “Enter a valid email address.” rather than shipping a broken mailto: link.Live Preview
|
Priya Ramanathan
Senior Product Designer at Northwind Studio
|
+1 415 555 0142 priya@northwindstudio.example northwindstudio.example |
<table cellpadding="0" cellspacing="0" border="0" style="font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:1.6;color:#1C1917;">
<tr>
<td style="padding-right:16px;border-right:3px solid #2563EB;vertical-align:top;">
<div style="font-size:16px;font-weight:bold;color:#2563EB;">Priya Ramanathan</div>
<div>Senior Product Designer at Northwind Studio</div>
</td>
<td style="padding-left:16px;vertical-align:top;">
+1 415 555 0142<br>
<a href="mailto:priya@northwindstudio.example" style="color:#2563EB;text-decoration:none;">priya@northwindstudio.example</a><br>
<a href="https://northwindstudio.example" style="color:#2563EB;text-decoration:none;">northwindstudio.example</a><br>
<a href="https://linkedin.com/in/priya-ramanathan" style="color:#2563EB;text-decoration:none;">LinkedIn</a>
</td>
</tr>
</table>