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