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