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