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