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