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