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