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