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