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