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