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