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