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