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