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