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