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