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