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

Categories

0 votes
279 views
in Technique[技术] by (71.8m points)

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

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

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

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...