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