Search code examples
font-face

@font-face not working in Firefox 10 / IE


I seriously have no idea why it's not working. Currently not working in Firefox/IE only Safari/Chrome.

Using Google Web Fonts API Here's the site:

Here's the code:

<link href='http://fonts.googleapis.com/css?family=Open+Sans:600' rel='stylesheet' type='text/css'>

I tried not using the Google API and just hosting the files on my server and it's still not working


Solution

  • You're not applying it to anything, you're only loading the javascript.

    h1 { font-family: 'Open Sans', sans-serif; }

    Just tried and it works.