Hey everyone – I've come across multiple websites discussing this issue, but I'm still struggling to get it right. I'm trying to incorporate a Google font (specifically, Fira Sans) into an HTML email so that it shows up correctly in Outlook.
When I open the .html file in a browser, it looks fine (although this might be because I have the fonts installed locally), but once I paste it into Outlook, it defaults to Helvetica.
Below is the code I've gathered from different sources, but I still haven't been able to make it work:
IN HEAD (Tried two different approaches)
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>
Thank you!