How do I use the font League Gothic on my website?

时间:2015-07-08 15:56:16

标签: html css fonts

How do I use the font League Gothic on my website?

Thanks,

1 个答案:

答案 0 :(得分:0)

如果您已经下载了 League Gothic 字体,请使用CSS3's @-font-face Rule。像这样定义你的字体:

@font-face
{
    font-family: League-Gothic;
    src: url(wherever your font is located);
}

尝试使用 .ttf / .otf 字体,因为它们在5种主流浏览器(IE,Firefox,Opera,Chrome和Safari)中得到了最好的支持。