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