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