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