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