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