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