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