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