UtilityToolsLab

© 2026 UtilityToolsLab. Built and maintained by the UtilityToolsLab Team.

Free eBooks·About·Changelog·Privacy Policy·Terms of Service·Report a bug
HomeContent & Social ToolsSignature Generator

Related Tools

YT Thumbnail GrabHeadline AnalyzerSubject AnalyzerCopy Scorer

HTML Email Signature Generator

Build a cross-client-safe HTML email signature from name, title, contact details and a LinkedIn link. Live preview, one-click copy, entirely offline.

You Might Also Like

All Content & Social Tools

YT Thumbnail Grab

Pull every thumbnail size a YouTube video publishes, from 1280x720 down, as JPG or the smaller WebP. Paste a watch, Shorts, youtu.be or embed link.

Headline Analyzer

Score a headline or title against a transparent 100-point rubric — length, power words, numbers and edge impact — entirely in your browser.

Subject Analyzer

Score an email subject line across 6 signals — length, urgency, personalisation, numbers, question format and spam risk — entirely in your browser.

Copy Scorer

Score landing page copy on a transparent 100-point rubric: readability, sentence length, call to action, customer focus, specificity and clarity.

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.

Worked Example: A Complete Contact Card

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.

Format Notes: Why a Table, Not Flexbox

  • Every color, spacing, and font value is written inline as a style attribute on the exact element it affects, because Outlook strips a <style> block entirely and several other clients strip external stylesheets on paste.
  • Website and LinkedIn URLs typed without a scheme are corrected automatically: entering northwindstudio.example outputs href="https://northwindstudio.example", so a signature never ships a broken relative link.
  • Name, job title, and company are HTML-escaped before insertion — an ampersand in a company name like “Kiln & Co.” becomes &amp; in the output, so the generated table always parses as valid HTML no matter what you type.

Accuracy Limits: One Layout, Not Every Client

  • An email address that fails a basic name@domain.tld pattern shows “Enter a valid email address.” rather than shipping a broken mailto: link.
  • An accent color must be a 3- or 6-digit hex value; anything else shows “Enter a valid hex color like #2563EB.” and the generator falls back to the platform’s default terracotta rather than emitting invalid CSS.
  • Some mobile mail apps clip an inline photo or logo automatically inserted into a signature, so this tool deliberately omits an image field; paste one into the copied HTML by hand if your client supports it reliably.

Live Preview

Priya Ramanathan
Senior Product Designer at Northwind Studio
+1 415 555 0142
priya@northwindstudio.example
northwindstudio.example
LinkedIn
HTML
<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>