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