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