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