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