Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

is there an email equivilant of the css property font-family ? As emails dont embed the font the reader has to have the font installed on their computer, if they dont the font will render in times new roman (or other default font).

Is there a way to define multiple backup / fullback fonts ?

share|improve this question

2 Answers

up vote 7 down vote accepted

See this article about css in emails. Most mail clients don't support a head element in html emails, so non-inline css is out. This means you can't use css3's @font-face to declare custom fonts.

However, you can specify fallback fonts by separating multiple fonts with commas. For example: font-family: Helvetica, Arial, sans-serif;

share|improve this answer
2  
See article about web safe fonts, for a wider variety. – Aznim Jun 27 '12 at 16:10

If you are using Outlook or something similar, you can use HTML rather then CSS to encode Google Web Fonts, and have the fonts load up as a template each time you want to write an email.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.