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