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