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