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