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