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