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