Is it possible to use google web fonts in gmail
Asked Answered
A

1

13

I want to use google web font "Over the Rainbow" when composing mail in gmail

 <link href='http://fonts.googleapis.com/css?family=Over+the+Rainbow&v2' rel='stylesheet' type='text/css'>

Is it possible?

<script type="text/javascript">
  WebFontConfig = {
    google: { families: [ 'Over+the+Rainbow' ] }
  };
  (function() {
    var wf = document.createElement('script');
    wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
      '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
    wf.type = 'text/javascript';
    wf.async = 'true';
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(wf, s);
  })(); </script>
Ahrens answered 29/6, 2011 at 6:28 Comment(1)
At least Gmail supports webfonts for Google’s own mail. This is mail from 'Google+ Hangouts' - the font Roboto is included in the <head> of the mail.Florencia
P
15

I wish the answer were different, but I do not believe it is currently possible.

I don't believe Gmail will allow you to insert a link element into the message body (although some email clients will).

Gmail will not allow you to run JavaScript within the message.

Pasteur answered 18/7, 2011 at 14:46 Comment(5)
Google web font is simply a CSS file, outlook.com supports adding web-font when editing the email as HTML but after sending the message the font formatting vanishesAhrens
Isn't it ironic that Google Webfonts work in almost every mail client except for Google's.....Geomorphology
I almost went insane trying to deduce why fonts were rendering everywhere except for the gmail web client. Kudos.Ancell
This answer is 10 years old and no longer valid, imo. You can add webfonts as simple CSS now.Contralto
@Contralto based on your comment: are you stating that Gmail now allows webfonts, or only saying that you now can add webfonts as simple CSS in general (but Gmail still wont accept them )...? Please clarifyOptometrist

© 2022 - 2024 — McMap. All rights reserved.