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