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