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