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