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