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