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