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