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