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