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