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