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