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