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