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