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