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