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