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