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