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