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