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