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