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