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