aslanunal / googlefontdirectory

Automatically exported from code.google.com/p/googlefontdirectory
0 stars 0 forks source link

ČŠĐŽĆ doesn't work with Google fonts, for example News Cycle #179

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
I added this line to my HTML file:
<link href='http://fonts.googleapis.com/css?family=News+Cycle' rel='stylesheet' 
type='text/css'/>

What is the expected output? What do you see instead?
News Cycle works ok with English characters, but when I use 'čćžšđ' 
characters in HTML file, I see Arial font instead of News Cycle 

What version of the product are you using? On what operating system?
I use Chrome and Opera on Windows 7. I have my HTML file on both, localhost and 
server (same problem)

Please provide any additional information below.
That's my header of HTML file:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>trinity</title>

<link href='http://fonts.googleapis.com/css?family=Cuprum' rel='stylesheet' 
type='text/css'/>
<link href='http://fonts.googleapis.com/css?family=News+Cycle' rel='stylesheet' 
type='text/css'/>
<link href='http://fonts.googleapis.com/css?family=Pontano+Sans' 
rel='stylesheet' type='text/css'/>

<link rel="stylesheet" href="css/dizajn.css" type="text/css"/>

</head>

And that's how I define font in CSS file
body {font-family: 'News Cycle', sans-serif;}

Original issue reported on code.google.com by hrv...@gmail.com on 30 Nov 2012 at 1:17