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