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