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