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