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