Use on the webTotal Use [ 3199 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/4d44e53da9905ba73c5a11ff754abbe7?family=LeagueGothic-CondensedItalic" rel="stylesheet"> 
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
  @import url(https://db.onlinewebfonts.com/c/4d44e53da9905ba73c5a11ff754abbe7?family=LeagueGothic-CondensedItalic); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "LeagueGothic-CondensedItalic";
    src: url("https://db.onlinewebfonts.com/t/4d44e53da9905ba73c5a11ff754abbe7.eot");
    src: url("https://db.onlinewebfonts.com/t/4d44e53da9905ba73c5a11ff754abbe7.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/4d44e53da9905ba73c5a11ff754abbe7.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/4d44e53da9905ba73c5a11ff754abbe7.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/4d44e53da9905ba73c5a11ff754abbe7.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/4d44e53da9905ba73c5a11ff754abbe7.svg#LeagueGothic-CondensedItalic")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "LeagueGothic-CondensedItalic";