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