Use on the webTotal Use [ 5788 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/da6dca178a7a6cc3110da2a479363913?family=News+Gothic+MT+W04+Condensed" 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/da6dca178a7a6cc3110da2a479363913?family=News+Gothic+MT+W04+Condensed); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "News Gothic MT W04 Condensed";
    src: url("https://db.onlinewebfonts.com/t/da6dca178a7a6cc3110da2a479363913.eot");
    src: url("https://db.onlinewebfonts.com/t/da6dca178a7a6cc3110da2a479363913.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/da6dca178a7a6cc3110da2a479363913.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/da6dca178a7a6cc3110da2a479363913.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/da6dca178a7a6cc3110da2a479363913.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/da6dca178a7a6cc3110da2a479363913.svg#News Gothic MT W04 Condensed")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "News Gothic MT W04 Condensed";