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