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