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