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