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