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