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