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