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