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