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