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