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