@font-face : converting and displaying a font (CityBlueprint)

风格不统一 提交于 2019-12-25 02:25:01

问题


I try to embed a font coming from http://fr.fontstock.net/8826/cityblueprint.html. First, I convert the font through http://convertfonts.com

Then I insert the css code :

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

body {
    font-family: 'cityblueprint';
}

But it doesn't work in any browser.

I do the same thing with three random fonts from fontstock and these work perfect.

I don't understand what happened with that "CityBlueprint" font.

来源:https://stackoverflow.com/questions/20553641/font-face-converting-and-displaying-a-font-cityblueprint

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!