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