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