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