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