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