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