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