Cyrillic不适用于EuropeExt字体

时间:2014-08-06 12:41:29

标签: html css fonts

我创建了自己的网站,我希望使用EuropeExt作为我的字体。我使用WEBFONT GENERATOR

生成代码

index.css

@font-face {
    font-family: 'europe_extnormal';
    src: url('font/europe_ext-webfont.eot');
    src: url('font/europe_ext-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/europe_ext-webfont.woff') format('woff'),
         url('font/europe_ext-webfont.ttf') format('truetype'),
         url('font/europe_ext-webfont.svg#europe_extnormal') format('svg');
    font-weight: normal;
    font-style: normal;

}

h1 {
    font-family: 'europe_extnormal';
}

的index.html

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

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

<style type="text/css">
font-family: 'europe_extnormal' charset="utf-8";
</style>
</head>

<body>
<h1>Hello Привет</h1>
</body>

问题是拉丁语改变了字体而西里尔语没有改变。请帮助我,解决它 enter image description here

更新 我找到了相关的link,选中了单选按钮“EXPERT”,然后选择了支持的西里尔文,但没有成功

0 个答案:

没有答案