Hello all– I've found several web pages addressing this, but I'm still not having success. I want to load a google font (in this case, Fira Sans) into an html email so that it actually appears in Outlook.
I'm opening the .html file in a browser, where it looks good (but maybe because I have the fonts installed locally), but when I copy it to Outlook it displays as the fallback font, Helvetica.
Here's the code I've cobbled together from various sources, but still no luck:
IN HEAD (tried two things)
1.
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Fira+Sans:300,500,500italic" type="text/css">
<style type="text/css">
@import url(https://fonts.googleapis.com/css?family=Fira+Sans:300,500,500italic);
</style>
IN BODY
<td width=300 valign=bottom style="width:225.0pt; padding:0in 5.4pt 0in 5.4pt; font-family: 'Fira Sans', Helvetica , Arial, sans-serif;">
<p class=MsoNormal><i><span style="font-size:22.0pt; font-family:'Fira Sans', Arial, Helvetica, sans-serif !important; font-weight:500!important; color:#7030A0; font-style:italic;"><font face="'Fira Sans', Helvetica, Arial, sans-serif;">Joining Together</font></span></i></p>
</td>
Thanks!