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