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