Rk502
Rk502

Reputation: 55

How to implement Open Sans Web Font in Outlook?

I am trying to add the Open Sans font to a HTML email but In outlook 2007/2013 Arial font is displaying. Following is my code:

     <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700'rel='stylesheet' type='text/css'/>

 <style type="text/css">

    @media screen{
       .webfont {
         font-family: 'Open Sans', Arial, sans-serif !important;
  }
 }
</style>

Web Font class is passing to Div with Style option ( div class="webfont" style="width: 620px; padding: 0 14px; border: 1px solid #dcdcdc; margin: 0 auto;font: normal 15px ; color: #555;">)

Upvotes: 1

Views: 1632

Answers (1)

Jasmine
Jasmine

Reputation: 11

Most web fronts don't work in Outlook 2013. I believe Times New Roman is the only approved web font. There's a chart here showing which email clients accept web fonts.

Upvotes: 1

Related Questions