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