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