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