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