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