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