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