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