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