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