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