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