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