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