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