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