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