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