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