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