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