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