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