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