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