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