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