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