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