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