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