How to use Segoe Print font in CSS?
I'm trying to make my webpage use the font Segoe Print, which is not a
default browser font. I have the ttf file though, is there any way I can
employ this .ttf file so that every visitor (no matter what browser) can
see the font ?
I searched and found some solutions, one was saying "Convert the font
using this site" but it gives the error:
Microsoft has requested that their font Segoe Print to be blacklisted by
the generator
So how can I use this font on my website ?
I also found a solution that suggests the following CSS rule :
@font-face
{
font-family: myFirstFont;
src: url('Segoe.ttf'),
url('Segoe.eot'); /* IE9 */
}
But, will it work in non-windows browsers? I mean, does the user have to
have the ttf file in their computer, or will it be loaded from my website
?
Thanks !
No comments:
Post a Comment