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