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