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