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