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