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