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