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