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