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