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