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