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