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