Non-Webkit browsers not displaying correct characters

I am using Google Web Fonts in my project and I am having a strange problem. Everything works fine in Chrome, Mobile Safari, Mobile Chrome and even Android browser, but in browsers without a web browser (IE11, Latest FF), special characters (in my case "ğ", "Ğ") are not displayed in the standard font.

Here the font is importing:

@import url(https://fonts.googleapis.com/css?family=Allura);

@import url(https://fonts.googleapis.com/css?family=Roboto+Slab);

      

And here's the site if you're interested:

goo.gl/pleMkZ

Screenshots:

Chrome and Firefox Screenshots

+3


source to share


1 answer


As which should be listed by Google , you need to request support for "Latin Extended" to get all Turkish letters. Instead

@import url(https://fonts.googleapis.com/css?family=Allura);

      

using



@import url(https://fonts.googleapis.com/css?family=Allura&subset=latin,latin-ext);

      

Likewise for other fonts.

+3


source







All Articles