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