Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
287 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...