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