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