1

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

Thanks,

Robin Andersson
  • 4,416
  • 2
  • 22
  • 42
Luca G
  • 21
  • 3
  • http://stackoverflow.com/questions/13585186/how-can-i-use-custom-fonts-on-a-website – loli Jul 08 '15 at 16:31

1 Answers1

0

If you have already downloaded the League Gothic font, use CSS3's @-font-face Rule. Define your font like this:

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

Try to use .ttf/.otf fonts because they have the best of support among the 5 major browsers (IE, Firefox, Opera, Chrome, and Safari).

Henry Zhu
  • 1,826
  • 5
  • 30
  • 69