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