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