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