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