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