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