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