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