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