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