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