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