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