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