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