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