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