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