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