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