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