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