-1

I have a problem: I am using Google Webfonts for my new website. But when I open my website with Chrome, the fonts I have chosen are not shown. I can see the text but the font is not correct - its always the same lame font. The "funny" thing ist: This problem doesn´t occur with Internet Explorer. IE shows the fonts in the right way.

Can somebody please help me what´s wrong and tell me, how I can fix this. That would be great.

Many thanks in advance.

Julia

  • Google Fonts should (and do) work in most browsers, including Chrome. Can you post details of how you're implementing them? [This fiddle](http://jsfiddle.net/cherryflavourpez/2bbYN/) works fine in Chrome (Canary/current) – CherryFlavourPez Mar 10 '14 at 17:08
  • Can you show us the code that you are using? – Howli Mar 10 '14 at 17:10
  • I implemented it with: - and body { font-family: 'Julius Sans One', sans-serif;}. Now I only take only a part of my code to show you, what I mean - and this little part is shown correct in Chrome. The whole code does only work with IE, not with Chrom. I dont understand that. – user3402675 Mar 10 '14 at 17:47

2 Answers2

0

add to your CSS file

@import url(http://fonts.googleapis.com/css?family=Gafata);
body {font-family: 'Gafata', sans-serif;};
Brandon Kiefer
  • 329
  • 2
  • 9
0

I found the problem: I saved the .txt and the .html in the wrong encoding. It was "ANSI" and I have to choose "UTF-8". Now, everything works :-). Maybe I can help with this answer somebody, who makes the same mistake.

Thanks to all of you, who helped me.

Julia