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