1

I'm using the Roboto font in my website and it's rendering like the following in Chrome (Windows)

enter image description here

The font renders OK in iOS.

How can I fix this? Any help is appreciated :)

Ju Nogueira
  • 8,435
  • 2
  • 29
  • 33

1 Answers1

0

I had a similar problem. Instead using the standard code provided by google,

<link href='https://fonts.googleapis.com/css?family=Poiret+One' rel='stylesheet' type='text/css'>

I added a crossorigin="anonymous" property tag.

<link href='https://fonts.googleapis.com/css?family=Poiret+One' rel='stylesheet' type='text/css' crossorigin="anonymous">

Sincerely, I don't know the real reason, but it worked. Hope that works for you too.

Ivan
  • 34,531
  • 8
  • 55
  • 100
Andrea
  • 65
  • 6