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