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