Google fonts do not work in 2 out of 5 browsers

Good afternoon. I am very new to this community and this is my first question. I studied HTML and CSS in the last month, and I came across the first situation when I couldn’t find the answer on this amazing site! (I found a few questions and answers, but nothing specific to my situation, so your help would be greatly appreciated)

I use Notepad ++ to write a website and include the following in my head

<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine">

and then in CSS I have:

font-family: 'Tangerine', serif;

Now the reason I'm so confused is that the font loads fine in Chrome, Opera and Safari, but not in IE or Firefox ?! As I said, I can’t find a specific answer to this question, so everything that I missed, you can indicate, it would be very appreciated. Is it possible that Google fonts do not work locally in IE or Firefox?

Thanks again

Shane

UPDATE: I use the latest version of all browsers; I just downloaded Firefox and IE today.

+3
source share
1 answer

This is because this fond only provides the file woff:

src: local('Tangerine'), url(http://themes.googleusercontent.com/static/fonts/tangerine/v4/HGfsyCL5WASpHOFnouG-RLO3LdcAZYWl9Si6vvxL-qU.woff) format('woff');

, svg, eot. - , . , , , , , .

+1

All Articles