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