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