我目前正在建立一个使用希腊语和英语的本地joomla网站,我想更改字体。
我访问了fontsquirrel,并下载了支持希腊语言的字体“ Helsinki”(http://www.fontsquirrel.com/fonts/helsinki),但是当我尝试查看结果时,只有英文字符发生了变化。
然后,我尝试下载带有“无子设置”选项的webfont套件,再次,仅影响英文字符。
最后,我尝试下载ttf文件并转到生成器。我上传了字体(Helsinki),然后选择了专家。
在这里,我选择了希腊语和英语,然后下载了新的webfont工具包。
但是当我尝试应用更改时,只有英文字符再次受到影响,希腊文字消失了。
什么地方出了错?

@font-face {
    font-family: 'helsinkiregular';
    src: url('fonts/helsinki-webfont.eot');
    src: url('fonts/helsinki-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/helsinki-webfont.woff2') format('woff2'),
         url('fonts/helsinki-webfont.woff') format('woff'),
         url('fonts/helsinki-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

最佳答案

通过任何字体工具(TTX,FontForge等)运行字体显示该字体绝对不支持希腊语。或除基本拉丁语(部分)和少数拉丁扩展字形以外的其他内容。

09-25 17:10