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