What an email signature is, and why HTML
An email signature is the standard block at the foot of your emails — name, title, company, contact details — that appends automatically so you never retype it and every message carries consistent branding. The version people search for is the professional HTML signature: not just lines of text, but a small layout with a logo, formatted name, coloured links, and a tidy structure that renders across Gmail, Outlook, and Apple Mail.
The reason this is an HTML problem rather than a document problem is the whole point of the page. A signature’s deliverable is markup you paste into your email client, not a file you download. That is why dedicated signature generators output HTML code blocks. This page gives you ready-to-edit signature templates — in both plain text and HTML — plus the rules that decide whether your signature looks crisp or collapses in Outlook, and the exact install steps for each client.
What to include (and what to leave out)
The hardest part of a good signature is restraint. The essentials:
- Full name
- Job title
- Company name
- One or two contact methods — phone and/or website
Optional, in rough order of usefulness:
- A small logo (around 100–150 px wide)
- One professional link — usually LinkedIn, a portfolio, or a booking page
- Pronouns
- A short legal/confidentiality line — only if your organisation mandates one
Four to six lines is the target. A recipient should absorb your signature in about a second. The common failure is the maximalist signature — every social network, a motivational quote, three phone numbers, a large banner — which buries the details that matter and looks unprofessional. Every element you add competes with the ones that count.
Why signatures break: the email-client reality
Email clients are not web browsers, and this is the source of nearly every signature problem.
- Desktop Outlook (Windows) renders email with Microsoft Word’s engine. It ignores flexbox, grid, background images, and many margins.
- Gmail strips
<style>blocks and external stylesheets, keeping only inline styles. - Apple Mail is more forgiving but still inconsistent on advanced CSS.
- Dark mode (across all of them) can invert or recolour your signature unpredictably.
The consequences dictate how you build:
- Use HTML tables for layout, not CSS flexbox/grid. Tables are the only layout method that survives every client.
- Put styles inline (
style="..."on each element), never in a<style>block. - Use web-safe fonts — Arial, Helvetica, Georgia, Times — because custom fonts will not load.
- Reference images with absolute URLs hosted publicly; never base64 data URIs (Outlook strips them).
- Set explicit pixel widths on images and table cells.
Build to the lowest common denominator and your signature renders the same everywhere. Build to modern web standards and it breaks in Outlook for a large share of your recipients.
Copy-paste templates
Plain-text signature (works everywhere, minimalist)
Jordan Ellis
Marketing Manager, Brightwave Ltd
+44 20 7946 0958 | brightwave.example.com
Plain text is perfectly professional for internal mail or a minimalist style. No logo, no layout — just clean, reliable text.
Stacked HTML signature (most reliable layout)
<table cellpadding="0" cellspacing="0" style="font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#333333;line-height:1.5;">
<tr>
<td>
<strong style="font-size:15px;color:#1a1a1a;">Jordan Ellis</strong><br>
<span style="color:#555555;">Marketing Manager · Brightwave Ltd</span><br>
<a href="tel:+442079460958" style="color:#333333;text-decoration:none;">+44 20 7946 0958</a> |
<a href="https://brightwave.example.com" style="color:#0b66c2;text-decoration:none;">brightwave.example.com</a><br>
<a href="https://www.linkedin.com/in/jordanellis" style="color:#0b66c2;text-decoration:none;">LinkedIn</a>
</td>
</tr>
</table>
Side-by-side HTML signature (logo left, details right)
<table cellpadding="0" cellspacing="0" style="font-family:Arial,Helvetica,sans-serif;font-size:13px;color:#333333;">
<tr>
<td style="padding-right:14px;border-right:2px solid #0b66c2;">
<img src="https://brightwave.example.com/logo.png" width="110" alt="Brightwave">
</td>
<td style="padding-left:14px;line-height:1.5;">
<strong style="font-size:15px;color:#1a1a1a;">Jordan Ellis</strong><br>
<span style="color:#555555;">Marketing Manager, Brightwave Ltd</span><br>
<a href="tel:+442079460958" style="color:#333333;text-decoration:none;">+44 20 7946 0958</a><br>
<a href="https://brightwave.example.com" style="color:#0b66c2;text-decoration:none;">brightwave.example.com</a>
</td>
</tr>
</table>
To use the HTML blocks: paste the code into a simple HTML file, open it in a browser, copy the rendered signature (not the code), and paste that into your email client’s signature editor. Or paste the rendered version directly if your generator/editor accepts HTML.
Installing in Gmail, Outlook, and Apple Mail
Gmail: Gear icon → See all settings → General → Signature → Create new → paste the rendered signature → set defaults for new mail and replies → Save Changes.
Outlook (web / new Outlook): Settings → Mail → Compose and reply → create signature → assign to new messages and replies.
Outlook (classic desktop): File → Options → Mail → Signatures → New → paste → set as default. Test first, because Word-engine rendering can alter the layout.
Apple Mail: Mail → Settings → Signatures → add a signature. Apple Mail can be fussy about pasted HTML; building/testing in the web clients first is wise.
In every case, paste the rendered signature so the client captures formatting and links, then send a test to yourself.
Common mistakes
Mistake 1: Building with modern CSS. Flexbox, grid, and external stylesheets break in Outlook. Use tables and inline styles.
Mistake 2: The all-image signature. A screenshot of your signature has no clickable links, fails accessibility, triggers spam filters, and vanishes if the image is blocked. Only the logo is an image; everything else is live text.
Mistake 3: A base64-embedded logo. Outlook strips data URIs. Host the logo at a public URL and reference it absolutely.
Mistake 4: Too much. Six social icons, a quote, a banner, and three numbers bury what matters. Four to six lines, one or two links.
Mistake 5: No dark-mode check. Transparent black logos and pure-black text disappear on dark backgrounds. Test both modes.
Mistake 6: A heavyweight confidentiality essay. Long disclaimers add clutter for weak legal benefit. Include one only if mandated, and keep it small and grey.
A note on exporting from this site
The honest position: an email signature must be HTML you paste into Gmail or Outlook, and the template.how builder currently exports PDF and DOCX — neither of which installs as a signature. The correct deliverable here is HTML with a copy-to-clipboard control, which is a known gap on our roadmap.
So this is a gallery page by design. Copy one of the blocks above — plain text for minimalism, stacked HTML for reliability, side-by-side HTML for a more designed look — edit your details, host your logo at a public URL if you use one, and paste it into your client following the install steps. Then send yourself a test on desktop and mobile, in both light and dark mode.
Worked example
Amara Okafor is a freelance UX consultant who wants one signature that looks professional and works in both her Gmail and her client’s Outlook threads.
She starts from the side-by-side HTML block. She hosts her logo at amaraux.example.com/mark.png at 110 px wide, and fills in her details: name, “UX Consultant”, phone, website, and a single LinkedIn link — no other socials, because nothing else serves a client. She keeps text in #333333 grey rather than black, anticipating dark mode.
She pastes the code into an HTML file, opens it in her browser, and copies the rendered result into Gmail’s signature editor. She emails it to herself and opens it in: desktop Gmail (perfect), the Outlook web app her client uses (the table layout holds, logo loads), and her phone in dark mode — where she notices her logo’s transparent edge looks slightly hard, so she swaps in a version with a thin off-white outline.
Final signature: four lines plus a small logo, one link, renders identically across all three clients in both colour modes. She sets it as the default for new mail and replies. Total time: about thirty minutes, most of it testing.
Choosing a layout for your situation
The two reliable layouts — stacked and side-by-side — suit different needs, and there are a few variations worth knowing:
Stacked (single column). Everything in one left-aligned column: name, title, company, contacts, one link. It is bulletproof — there is no table layout to collapse, so it renders identically in every client including the most stubborn Outlook versions. Choose stacked when reliability matters more than visual flourish, or when you do not have a logo to place.
Side-by-side (logo left, text right). A small logo or photo on the left, separated by a thin vertical divider from the contact text on the right. It looks more designed and is the most common professional format. The catch is that it must be built with an HTML table, because the dividing line and the two-column arrangement need table cells to survive Outlook. Done correctly it is just as reliable as stacked; done with CSS flexbox it breaks.
Minimal text-only. No logo, no table — just two or three lines of styled text. Increasingly popular precisely because it sidesteps every rendering and image-blocking problem, loads instantly, and never breaks. For consultants, developers, and anyone whose brand is personal rather than corporate, a clean text signature can look more confident than a heavy graphic one.
With a banner or call-to-action. Some businesses add a promotional banner or a “Book a call” button below the signature. These work but carry the most risk: an oversized banner forces mobile scrolling, an image-heavy signature raises spam suspicion, and a button built with modern CSS may not render. If you use one, keep the banner under ~600 px wide and ~50 KB, and build any button as a styled table cell with an inline-styled link, not a CSS button. A signature banner is a different beast from a social-channel header such as a YouTube banner — far smaller, and built in HTML rather than exported as a flat image.
Maintaining signatures across a team
For an individual, a signature is set once and forgotten. For an organisation, signatures are a recurring headache: people format them inconsistently, paste in broken HTML, use outdated job titles, or omit the legally required company details. A few practices keep a team’s signatures coherent:
Provide a master template, not instructions. Telling staff “use Arial, include your title” produces twenty different signatures. Giving them a ready-built HTML block with placeholders they swap their details into produces one consistent signature with twenty sets of details. The template should already contain the logo, the brand colours, and any mandatory legal line, so individuals only edit name, title, and contact.
Centralise where you can. Google Workspace and Microsoft 365 both support administrator-applied signatures that append a consistent block to every outgoing email organisation-wide, set centrally rather than by each user. For larger teams this eliminates the inconsistency problem entirely and guarantees compliance lines are present. It is more setup than a personal signature, but for any business above a handful of people it is worth it.
Audit periodically. Job titles change, phone numbers change, brand colours get refreshed, and signatures quietly fall out of date. A periodic check — does everyone’s signature still reflect the current branding and their current role — keeps the team’s outbound mail looking current rather than like a museum of past job titles.
UK and US notes
Email signatures work the same way technically in the UK and US — the client behaviour, HTML rules, and install steps are identical. The differences are conventions: UK signatures more often include a company registration number and registered-office address (a legal requirement for UK limited companies on business correspondence, including email, under the Companies Act 2006), so UK business signatures legitimately carry an extra small-print line. US signatures rarely need that. Phone-number formatting differs (+44 with the international format for UK; (xxx) xxx-xxxx for US domestic), and spelling on a title or tagline should match your audience. If you correspond internationally, use the full international phone format so the number is dialable from either country.