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