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