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