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