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