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