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