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