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