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